mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
Now that Stylo considers `servo` as the default feature, Servo doesn't need to specify `features = ["servo"]`. Also use the same crate names as Stylo, rather than renaming them with `package`. Signed-off-by: Oriol Brufau <obrufau@igalia.com>
36 lines
1 KiB
TOML
36 lines
1 KiB
TOML
[package]
|
|
name = "servo_malloc_size_of"
|
|
license = "MIT OR Apache-2.0"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
accountable-refcell = { workspace = true }
|
|
app_units = { workspace = true }
|
|
content-security-policy = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
euclid = { workspace = true }
|
|
http = { workspace = true }
|
|
indexmap = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
markup5ever = { workspace = true }
|
|
servo_allocator = { path = "../allocator" }
|
|
servo_arc = { workspace = true }
|
|
smallvec = { workspace = true }
|
|
string_cache = { workspace = true }
|
|
stylo = { workspace = true }
|
|
stylo_dom = { workspace = true }
|
|
stylo_malloc_size_of = { workspace = true }
|
|
thin-vec = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
url = { workspace = true }
|
|
uuid = { workspace = true }
|
|
webrender_api = { workspace = true }
|
|
wr_malloc_size_of = { workspace = true }
|