forked from servo/rust-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
77 lines (56 loc) · 2.07 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
71
72
73
74
75
76
77
[package]
name = "azure"
version = "0.1.0"
authors = ["The Servo Project Developers"]
documentation = "http://doc.servo.org/azure/"
build = "build.rs"
[dependencies]
libc = "*"
euclid = "0.1"
serde = "*"
serde_macros = "*"
heapsize = "0.1.1"
heapsize_plugin = "0.0.1"
[dependencies.skia]
git = "https://github.com/servo/skia"
[target.i686-unknown-linux-gnu.dependencies.x11]
version = "2.0.0"
features = ["xlib"]
[target.x86_64-unknown-linux-gnu.dependencies.x11]
version = "2.0.0"
features = ["xlib"]
[target.arm-unknown-linux-gnueabihf.dependencies.x11]
version = "2.0.0"
features = ["xlib"]
[target.aarch64-unknown-linux-gnu.dependencies.x11]
version = "2.0.0"
features = ["xlib"]
[target.i686-unknown-linux-gnu.dependencies.freetype]
git = "https://github.com/servo/rust-freetype"
[target.x86_64-unknown-linux-gnu.dependencies.freetype]
git = "https://github.com/servo/rust-freetype"
[target.arm-linux-androideabi.dependencies.freetype]
git = "https://github.com/servo/rust-freetype"
[target.arm-unknown-linux-gnueabihf.dependencies.freetype]
git = "https://github.com/servo/rust-freetype"
[target.aarch64-unknown-linux-gnu.dependencies.freetype]
git = "https://github.com/servo/rust-freetype"
[target.i686-unknown-linux-gnu.dependencies.freetype-sys]
git = "https://github.com/servo/libfreetype2"
[target.x86_64-unknown-linux-gnu.dependencies.freetype-sys]
git = "https://github.com/servo/libfreetype2"
[target.arm-linux-androideabi.dependencies.freetype-sys]
git = "https://github.com/servo/libfreetype2"
[target.arm-unknown-linux-gnueabihf.dependencies.freetype-sys]
git = "https://github.com/servo/libfreetype2"
[target.aarch64-unknown-linux-gnu.dependencies.freetype-sys]
git = "https://github.com/servo/libfreetype2"
[target.x86_64-apple-darwin.dependencies]
core-foundation = "*"
core-graphics = "*"
[target.x86_64-apple-darwin.dependencies.core-text]
git = "https://github.com/servo/core-text-rs"
[target.arm-linux-androideabi.dependencies.egl]
git = "https://github.com/servo/rust-egl"
[target.arm-unknown-linux-gnueabihf.dependencies.egl]
git = "https://github.com/servo/rust-egl"