mirror of
https://github.com/servo/servo
synced 2026-05-14 10:56:44 +02:00
35 lines
917 B
TOML
35 lines
917 B
TOML
[package]
|
|
name = "webdriver_server"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[lib]
|
|
name = "webdriver_server"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
base64 = { workspace = true }
|
|
compositing_traits = { workspace = true }
|
|
cookie = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
euclid = { workspace = true }
|
|
http = { workspace = true }
|
|
image = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
log = { workspace = true }
|
|
net_traits = { workspace = true }
|
|
pixels = { path = "../pixels" }
|
|
script_traits = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
servo_url = { path = "../url" }
|
|
style_traits = { workspace = true }
|
|
uuid = { workspace = true }
|
|
webdriver = { workspace = true }
|