aboutsummaryrefslogtreecommitdiffstats
path: root/components/servo/Cargo.toml
blob: 2b4b03f5fa5e529a03d06f1cb4fc684bc43f5f5a (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
[package]

name = "servo"
version = "0.0.1"
authors = ["The Servo Project Developers"]

[lib]
name = "servo"
path = "lib.rs"
crate-type = ["rlib"]

[[bin]]
name = "servo"
path = "main.rs"
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 = ["glutin_app", "window"]
glfw = ["glfw_app"]
window = ["glutin_app/window"]
headless = ["glutin_app/headless"]

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

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

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

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

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

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

[dependencies.gfx]
path = "../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.time]
git = "https://github.com/rust-lang/time"