mirror of
https://github.com/servo/servo
synced 2026-05-12 09:56:50 +02:00
Switch the devtools part to GenericCallback and GenericSender. To keep the diff small the names where not changes as a Sender almost fills the same requirement as a callback. Testing: As this is mostly type changes, the compilation is the test but also devtools seem to work fine with these changes. ./mach try run is here: https://github.com/Narfinger/servo/actions/runs/19931697694 --------- Signed-off-by: Narfinger <Narfinger@users.noreply.github.com>
36 lines
868 B
TOML
36 lines
868 B
TOML
[package]
|
|
name = "devtools"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "devtools"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
base64 = { workspace = true }
|
|
chrono = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
devtools_traits = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
headers = { workspace = true }
|
|
http = { workspace = true }
|
|
log = { workspace = true }
|
|
net = { path = "../net" }
|
|
net_traits = { workspace = true }
|
|
rand = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
servo_url = { path = "../url" }
|
|
uuid = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
chrono = { workspace = true }
|