aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/Cargo.toml
blob: 8abc8e8133e6eed4b9631a720775431f16fffe83 (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
86
87
88
89
90
91
92
93
94
[package]
name = "script"
version = "0.0.1"
authors = ["The Servo Project Developers"]

build = "build.rs"

[lib]
name = "script"
path = "lib.rs"

[features]
debugmozjs = ['js/debugmozjs']

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

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

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

[dependencies.net_traits]
path = "../net_traits"

[dependencies.profile_traits]
path = "../profile_traits"

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

[dependencies.devtools_traits]
path = "../devtools_traits"

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

[dependencies.style_traits]
path = "../style_traits"

[dependencies.canvas]
path = "../canvas"

[dependencies.canvas_traits]
path = "../canvas_traits"

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

[dependencies.offscreen_gl_context]
git = "https://github.com/ecoal95/rust-offscreen-rendering-context"

[dependencies.angle]
git = "https://github.com/ecoal95/angle"
branch = "servo"

[dependencies.ipc-channel]
git = "https://github.com/servo/ipc-channel"

[dependencies.xml5ever]
git = "https://github.com/Ygg01/xml5ever"
features = ["unstable"]

[dependencies.gfx_traits]
path = "../gfx_traits"

[dependencies]
app_units = {version = "0.1", features = ["plugins"]}
cssparser = { version = "0.4", features = [ "serde-serialization" ] }
log = "0.3"
encoding = "0.2"
fnv = "1.0"
hyper = { version = "0.7", features = [ "serde-serialization" ] }
time = "0.1.12"
bitflags = "0.3"
rustc-serialize = "0.3"
libc = "0.2"
unicase = "1.0"
num = "0.1.24"
websocket = "0.14.0"
uuid = "0.1.16"
smallvec = "0.1"
html5ever = { version = "0.2.1", features = ["unstable"] }
selectors = "0.2"
string_cache = { version = "0.2", features = ["unstable"] }
euclid = {version = "0.4", features = ["plugins"]}
tendril = "0.1.1"
rand = "0.3"
serde = "0.6"
caseless = "0.1.0"
image = "0.5.0"
url = "0.5.2"
ref_slice = "0.1.0"