mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
This will ultimately make it simpler to update crate dependencies and reduce duplicate when specifying requirements. Generally, this change does not touch dependencies that are only used by a single crate. We could consider moving them to workspace dependencies in the future.
28 lines
693 B
TOML
28 lines
693 B
TOML
[package]
|
|
name = "profile"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "profile"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
ipc-channel = { workspace = true }
|
|
profile_traits = { path = "../profile_traits" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
servo_config = { path = "../config" }
|
|
|
|
[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 }
|
|
servo_allocator = { path = "../allocator" }
|