aboutsummaryrefslogtreecommitdiffstats
path: root/ports/glutin/Cargo.toml
blob: c5972db9526a08b88ef72d6826367d03bdf9304d (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
[package]
name = "glutin_app"
version = "0.0.1"
authors = ["The Servo Project Developers"]

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

[features]
window = ["glutin/window"]
headless = ["glutin/headless"]

[dependencies]
time = "0.1.12"
bitflags = "*"
libc = "*"
url = "*"
gleam = "0.1"
euclid = "0.1"

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

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

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

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

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

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

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

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

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

[target.arm-unknown-linux-gnueabihf.dependencies]
x11 = "*"

[target.x86_64-apple-darwin.dependencies]
cgl = "0.1"

[target.arm-linux-androideabi.dependencies.egl]
git = "https://github.com/servo/rust-egl"