mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
54 lines
1.5 KiB
TOML
54 lines
1.5 KiB
TOML
[package]
|
|
name = "malloc_size_of"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
servo = [
|
|
"accountable-refcell",
|
|
"content-security-policy",
|
|
"crossbeam-channel",
|
|
"http",
|
|
"hyper_serde",
|
|
"keyboard-types",
|
|
"serde",
|
|
"serde_bytes",
|
|
"string_cache",
|
|
"time",
|
|
"url",
|
|
"uuid",
|
|
"webrender_api",
|
|
"xml5ever",
|
|
]
|
|
|
|
[dependencies]
|
|
accountable-refcell = { workspace = true, optional = true }
|
|
app_units = { workspace = true }
|
|
content-security-policy = { workspace = true, optional = true }
|
|
crossbeam-channel = { workspace = true, optional = true }
|
|
cssparser = { workspace = true }
|
|
euclid = { workspace = true }
|
|
http = { workspace = true, optional = true }
|
|
hyper_serde = { workspace = true, optional = true }
|
|
indexmap = { workspace = true }
|
|
keyboard-types = { workspace = true, optional = true }
|
|
selectors = { path = "../selectors", features = ["shmem"] }
|
|
serde = { workspace = true, optional = true }
|
|
serde_bytes = { workspace = true, optional = true }
|
|
servo_arc = { path = "../servo_arc" }
|
|
smallbitvec = { workspace = true }
|
|
smallvec = { workspace = true }
|
|
string_cache = { workspace = true, optional = true }
|
|
time = { workspace = true, optional = true }
|
|
tokio = { workspace = true }
|
|
url = { workspace = true, optional = true }
|
|
uuid = { workspace = true, optional = true }
|
|
void = "1.0.2"
|
|
webrender_api = { workspace = true, optional = true }
|
|
xml5ever = { workspace = true, optional = true }
|