mirror of
https://github.com/servo/servo.git
synced 2025-09-27 23:30:08 +01:00
Cargoify servo
This commit is contained in:
parent
db2f642c32
commit
c6ab60dbfc
1761 changed files with 8423 additions and 2294 deletions
51
Cargo.toml
Normal file
51
Cargo.toml
Normal 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"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue