forked from servo/servo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
69 lines (51 loc) · 1.06 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
[package]
name = "servo"
version = "0.0.1"
authors = ["The Servo Project Developers"]
[lib]
name = "servo"
crate-type = ["rlib"]
[[bin]]
name = "servo"
test = false
doc = false
bench = false
[[test]]
name = "reftest"
path = "tests/reftest.rs"
harness = false
[[test]]
name = "contenttest"
path = "tests/contenttest.rs"
harness = false
[features]
default = ["glfw_app"]
glutin = ["glutin_app"]
[dependencies.compositing]
path = "components/compositing"
[dependencies.net]
path = "components/net"
[dependencies.msg]
path = "components/msg"
[dependencies.util]
path = "components/util"
[dependencies.script]
path = "components/script"
[dependencies.layout]
path = "components/layout"
[dependencies.gfx]
path = "components/gfx"
[dependencies.glfw_app]
path = "ports/glfw"
optional = true
[dependencies.glutin_app]
path = "ports/glutin"
optional = true
[dependencies.url]
git = "https://github.com/servo/rust-url"
[dependencies.green]
git = "https://github.com/servo/green-rs"
branch = "servo"
[dependencies.rustuv]
git = "https://github.com/servo/green-rs"
branch = "servo"