servo/components/webdriver_server/Cargo.toml
Simon Sapin 83b3ebf6ac Simplify TOML syntax
* 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
2016-04-26 23:51:36 +02:00

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"