Cargoify servo

This commit is contained in:
Jack Moffitt 2014-08-28 09:34:23 -06:00
parent db2f642c32
commit c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions

51
Cargo.toml Normal file
View file

@ -0,0 +1,51 @@
[package]
name = "servo"
version = "0.0.1"
authors = ["The Servo Project Developers"]
[lib]
name = "servo"
crate-type = ["rlib", "dylib"]
[[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
[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.png]
git = "https://github.com/servo/rust-png"