aboutsummaryrefslogtreecommitdiffstats
path: root/ports/cef/Cargo.toml
blob: b6673b73f3eabf65244d5e771e6541771e126fe8 (plain) (blame)
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
78
79
80
81
82
83
84
85
[package]
name = "embedding"
version = "0.0.1"
authors = ["The Servo Project Developers"]

[lib]
name = "embedding"
path = "lib.rs"
crate-type = ["dylib"]

[dependencies]
log = "*"
url = "*"
libc = "*"
gleam = "0.1"

[dependencies.servo]
path = "../../components/servo"

[dependencies.glutin_app]
path = "../glutin"

[dependencies.plugins]
path = "../../components/plugins"

[dependencies.compositing]
path = "../../components/compositing"

[dependencies.gfx]
path = "../../components/gfx"

[dependencies.script]
path = "../../components/script"

[dependencies.script_traits]
path = "../../components/script_traits"

[dependencies.net]
path = "../../components/net"

[dependencies.msg]
path = "../../components/msg"

[dependencies.util]
path = "../../components/util"

[dependencies.style]
path = "../../components/style"

[dependencies.devtools]
path = "../../components/devtools"

[dependencies.azure]
git = "https://github.com/servo/rust-azure"

[dependencies.geom]
git = "https://github.com/servo/rust-geom"

[dependencies.js]
git = "https://github.com/servo/rust-mozjs"

[dependencies.layers]
git = "https://github.com/servo/rust-layers"

[dependencies.png]
git = "https://github.com/servo/rust-png"

[dependencies.stb_image]
git = "https://github.com/servo/rust-stb-image"

[target.x86_64-apple-darwin.dependencies]
objc = "0.1"
cocoa = "0.1"
core-foundation = "0.1"
core-graphics = "0.1"
cgl = "0.1"

[target.x86_64-apple-darwin.dependencies.core-text]
git = "https://github.com/servo/core-text-rs"

[target.i686-unknown-linux-gnu.dependencies]
x11 = "*"

[target.x86_64-unknown-linux-gnu.dependencies]
x11 = "*"