Skip to content
This repository was archived by the owner on Jul 10, 2023. It is now read-only.

Commit 39a38c5

Browse files
committed
Use skia and deps from crates.io
1 parent 851b206 commit 39a38c5

File tree

1 file changed

+23
-41
lines changed

1 file changed

+23
-41
lines changed

Cargo.toml

+23-41
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,42 @@
11
[package]
22

33
name = "layers"
4-
version = "0.1.1"
4+
version = "0.2.0"
55
authors = ["The Servo Project Developers"]
66

77
[features]
88
default = []
9-
plugins = ["euclid/plugins", "azure/plugins", "skia/euclid/plugins", "io-surface/euclid/plugins"]
9+
plugins = ["euclid/plugins"]
1010

1111
[dependencies]
1212
libc = "0.2"
13-
rustc-serialize = "*"
14-
log = "*"
13+
rustc-serialize = "0.3.16"
14+
log = "0.3.4"
1515
gleam = "0.1"
16-
euclid = "0.3"
17-
18-
[dependencies.skia]
19-
git = "https://github.com/servo/skia"
20-
21-
[dependencies.azure]
22-
git = "https://github.com/servo/rust-azure"
16+
euclid = "0.4"
17+
servo-skia = "0.20130412.0"
18+
azure = { git = "https://github.com/servo/rust-azure" }
2319

2420
[target.x86_64-apple-darwin.dependencies]
25-
core-foundation = "*"
21+
core-foundation = "0.2.0"
2622
cgl = "0.1"
23+
io-surface = "0.1.0"
2724

28-
[target.x86_64-apple-darwin.dependencies.io-surface]
29-
git = "https://github.com/servo/io-surface-rs"
30-
31-
[target.i686-unknown-linux-gnu.dependencies.glx]
32-
git = "https://github.com/servo/rust-glx"
33-
34-
[target.x86_64-unknown-linux-gnu.dependencies.glx]
35-
git = "https://github.com/servo/rust-glx"
36-
37-
[target.arm-unknown-linux-gnueabihf.dependencies.glx]
38-
git = "https://github.com/servo/rust-glx"
39-
40-
[target.aarch64-unknown-linux-gnu.dependencies.glx]
41-
git = "https://github.com/servo/rust-glx"
42-
43-
[target.i686-unknown-linux-gnu.dependencies.x11]
44-
version = "2.3.0"
45-
features = ["xlib"]
25+
[target.i686-unknown-linux-gnu.dependencies]
26+
glx = "0.1.0"
27+
x11 = { version = "2.3.0", features = ["xlib"] }
4628

47-
[target.x86_64-unknown-linux-gnu.dependencies.x11]
48-
version = "2.3.0"
49-
features = ["xlib"]
29+
[target.x86_64-unknown-linux-gnu.dependencies]
30+
glx = "0.1.0"
31+
x11 = { version = "2.3.0", features = ["xlib"] }
5032

51-
[target.arm-unknown-linux-gnueabihf.dependencies.x11]
52-
version = "2.3.0"
53-
features = ["xlib"]
33+
[target.arm-unknown-linux-gnueabihf.dependencies]
34+
glx = "0.1.0"
35+
x11 = { version = "2.3.0", features = ["xlib"] }
5436

55-
[target.aarch64-unknown-linux-gnu.dependencies.x11]
56-
version = "2.3.0"
57-
features = ["xlib"]
37+
[target.aarch64-unknown-linux-gnu.dependencies]
38+
glx = "0.1.0"
39+
x11 = { version = "2.3.0", features = ["xlib"] }
5840

59-
[target.arm-linux-androideabi.dependencies.egl]
60-
git = "https://github.com/servo/rust-egl"
41+
[target.arm-linux-androideabi.dependencies]
42+
servo-egl = "0.2"

0 commit comments

Comments
 (0)