-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 905 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
[package]
name = "web-codecs"
description = "WASM bindings for Web Codecs"
authors = ["Luke Curley"]
repository = "https://github.com/kixelated/web-codecs-rs"
license = "MIT OR Apache-2.0"
version = "0.3.2"
edition = "2021"
categories = ["wasm", "multimedia", "web-programming", "api-bindings"]
[dependencies]
wasm-bindgen = "0.2"
wasm-bindgen-futures = "0.4"
thiserror = "1"
js-sys = "0.3.70"
tokio = { version = "1", features = ["sync", "macros"] }
bytes = "1"
derive_more = { version = "1", features = ["from", "deref", "deref_mut"] }
[dependencies.web-sys]
version = "0.3.70"
features = [
"VideoDecoder",
"VideoDecoderInit",
"VideoDecoderConfig",
"VideoFrame",
"VideoColorSpace",
"VideoColorSpaceInit",
"EncodedVideoChunk",
"EncodedVideoChunkInit",
"EncodedVideoChunkType",
"HardwareAcceleration",
"VideoMatrixCoefficients",
"VideoColorPrimaries",
"VideoTransferCharacteristics",
]