forked from rust-av/rust-av
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
44 lines (34 loc) · 834 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 = "av"
version = "0.1.0"
authors = ["Luca Barbato <lu_zero@gentoo.org>"]
homepage = "https://github.com/rust-av/rust-av"
keywords = ["multimedia"]
license = "MIT"
edition = "2021"
[features]
nightly = []
[workspace]
members = ["bitstream", "codec", "data", "format"]
[dependencies.av-bitstream]
version = "0.2.0"
path = "bitstream"
[dependencies.av-codec]
version = "0.3.0"
path = "codec"
[dependencies.av-data]
version = "0.4.2"
path = "data"
[dependencies.av-format]
version = "0.7.0"
path = "format"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2.91"
[dev-dependencies]
criterion = { version = "0.5.1", default-features = false }
[target.'cfg(target_arch = "wasm32")'.dev-dependencies]
wasm-bindgen-test = "0.3.0"
[[bench]]
name = "bench"
path = "benches/bench.rs"
harness = false