-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathCargo.toml
71 lines (46 loc) · 1.23 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "rust-media"
version = "0.1.0"
authors = ["The Servo Project Developers"]
build = "build.rs"
[lib]
name = "rust_media"
path = "lib.rs"
[dependencies.libvpx-sys]
git = "https://github.com/pcwalton/libvpx"
branch = "servo"
[dependencies.libwebm-sys]
git = "https://github.com/pcwalton/libwebm"
branch = "servo"
[dependencies.mp4v2-sys]
git = "https://github.com/pcwalton/mp4v2"
branch = "servo"
[dependencies.ogg-sys]
git = "https://github.com/pcwalton/ogg"
branch = "servo"
[dependencies.lewton]
version = "^0.6.2"
default-features = false
features = ["nightly"]
[dependencies.giflib-sys]
git = "https://github.com/pcwalton/giflib"
[target.x86_64-apple-darwin.dependencies.core-foundation]
git = "https://github.com/servo/rust-core-foundation"
[dependencies]
num = "*"
num-derive = "0.1.39"
time = "*"
byteorder = "*"
libc = "0.2"
[dev-dependencies]
hound = "2.0"
lewton = {version = "*", features = ["ogg"]}
ogg = "0.5"
[build-dependencies]
# Needed for mkvparse.hpp.
# If we don't include this, libwebm-sys might not be present in
# the target directory after a fresh clone due to a race condition.
libwebm-sys = { git = "https://github.com/pcwalton/libwebm", branch = "servo" }
[features]
default = []
ffmpeg = []