mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00: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>
34 lines
887 B
TOML
34 lines
887 B
TOML
[package]
|
|
name = "profile"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lib]
|
|
name = "profile"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
base = { workspace = true }
|
|
ipc-channel = { workspace = true }
|
|
log = { workspace = true }
|
|
profile_traits = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
time = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
task_info = { path = "../../support/rust-task_info" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
regex = { workspace = true }
|
|
|
|
[target.'cfg(not(target_os = "windows"))'.dependencies]
|
|
libc = { workspace = true }
|
|
|
|
[target.'cfg(not(any(target_os = "windows", target_env = "ohos")))'.dependencies]
|
|
tikv-jemalloc-sys = { workspace = true }
|