aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/Cargo.toml
blob: 6d08b21bcec58295ba80317afc74115714f2b619 (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
[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.gfx]
path = "../gfx"

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

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

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

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

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

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

[dependencies.url]
version = "0.2.33"
features = ["query_encoding"]

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

[dependencies]
log = "*"
encoding = "0.2"
fnv = "1.0"
time = "0.1.12"
bitflags = "*"
rustc-serialize = "*"
libc = "*"
hyper = "0.5"
cssparser = "0.3.1"
unicase = "0.1"
num = "0.1.24"
websocket = "0.12"
uuid = "0.1.16"
smallvec = "0.1"
html5ever = "0.1"
string_cache = "0.1"
string_cache_plugin = "0.1"