mirror of
https://github.com/servo/servo
synced 2026-05-09 08:32:31 +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>
26 lines
639 B
TOML
26 lines
639 B
TOML
[package]
|
|
name = "devtools_traits"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "devtools_traits"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
embedder_traits = { workspace = true }
|
|
http = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
net_traits = { workspace = true }
|
|
serde = { workspace = true }
|
|
servo_url = { path = "../../url" }
|
|
uuid = { workspace = true, features = ["serde"] }
|