mirror of
https://github.com/servo/servo.git
synced 2025-08-02 20:20:14 +01:00
* Sections like `[dependencies.foo]` can be entries in a `[dependencies]` section with the `{key = value}` syntax. * Per-target dependencies can be expressed with more general `cfg(…)` conditions instead of exact target triples: https://github.com/rust-lang/cargo/pull/2328
24 lines
562 B
TOML
24 lines
562 B
TOML
[package]
|
|
name = "webdriver_server"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "webdriver_server"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
compositing = {path = "../compositing"}
|
|
msg = {path = "../msg"}
|
|
plugins = {path = "../plugins"}
|
|
util = {path = "../util"}
|
|
ipc-channel = {git = "https://github.com/servo/ipc-channel"}
|
|
image = "0.9"
|
|
log = "0.3.5"
|
|
hyper = "0.9"
|
|
rustc-serialize = "0.3.4"
|
|
regex = "0.1.55"
|
|
url = {version = "1.0.0", features = ["heap_size"]}
|
|
uuid = { version = "0.2", features = ["v4"] }
|
|
webdriver = "0.9"
|