mirror of
https://github.com/servo/servo.git
synced 2025-08-05 05:30:08 +01:00
Removed unused dependencies in various crates using cargo-machete, grep and cargo-udeps. Testing: The CI tests if any dependencies were used that are removed. Signed-off-by: Narfinger <Narfinger@users.noreply.github.com>
29 lines
761 B
TOML
29 lines
761 B
TOML
[package]
|
|
name = "profile_traits"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "profile_traits"
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
tracing = ["dep:tracing"]
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
crossbeam-channel = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
serde = { workspace = true }
|
|
servo_allocator = { path = "../../allocator" }
|
|
servo_config = { path = "../../config" }
|
|
signpost = { git = "https://github.com/pcwalton/signpost.git" }
|
|
time = { workspace = true }
|
|
tracing = { workspace = true, optional = true }
|