-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (42 loc) · 897 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "webcodecs"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
[dependencies]
js-sys = "0.3.69"
wasm-bindgen = "0.2.92"
wasm-bindgen-futures = "0.4.42"
web-sys = { version = "0.3.69", features = [
"CanvasRenderingContext2d",
"CodecState",
"Document",
"Element",
"EncodedVideoChunk",
"EncodedVideoChunkInit",
"EncodedVideoChunkType",
"ErrorEvent",
"HardwareAcceleration",
"HtmlCanvasElement",
"Navigator",
"WebGl2RenderingContext",
"WebGlBuffer",
"WebGlFramebuffer",
"WebGlProgram",
"WebGlShader",
"WebGlTexture",
"WebGlUniformLocation",
"WebGlVertexArrayObject",
"VideoDecoder",
"VideoDecoderConfig",
"VideoDecoderInit",
"VideoFrame",
"Window",
"XrRenderStateInit",
"XrSession",
"XrSessionInit",
"XrSessionMode",
"XrSystem",
"XrWebGlLayer",
]}