servo/components/webdriver_server/Cargo.toml
James Graham 009e2baaf0 Add enough Webdriver support to enable Get().
This is incomplete in several ways:

* It assumes that there's only one constellation (i.e. top level browsing context), ever.
* The session support is very basic indeed (no capabilities)
* Passing channels over channels may not sit well with IPC
* The error handling is mostly missing
2015-04-16 16:02:43 +01:00

22 lines
No EOL
370 B
TOML

[package]
name = "webdriver_server"
version = "0.0.1"
authors = ["The Servo Project Developers"]
[lib]
name = "webdriver_server"
path = "lib.rs"
[dependencies.msg]
path = "../msg"
[dependencies.util]
path = "../util"
[dependencies.webdriver]
git = "https://github.com/jgraham/webdriver-rust.git"
[dependencies]
rustc-serialize="0.3.4"
url = "0.2.16"
uuid = "0.1.11"