mirror of
https://github.com/servo/servo.git
synced 2025-06-28 19:13:41 +01:00
29 lines
595 B
TOML
29 lines
595 B
TOML
[package]
|
|
name = "webdriver_server"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "webdriver_server"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base64 = "0.6"
|
|
cookie = "0.10"
|
|
euclid = "0.17"
|
|
hyper = "0.10"
|
|
image = "0.18"
|
|
ipc-channel = "0.10"
|
|
log = "0.4"
|
|
msg = {path = "../msg"}
|
|
net_traits = {path = "../net_traits"}
|
|
regex = "0.2"
|
|
rustc-serialize = "0.3.4"
|
|
script_traits = {path = "../script_traits"}
|
|
servo_config = {path = "../config"}
|
|
servo_url = {path = "../url"}
|
|
url = "1.2"
|
|
uuid = {version = "0.6", features = ["v4"]}
|
|
webdriver = "0.33"
|