mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +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.
24 lines
610 B
TOML
24 lines
610 B
TOML
[package]
|
|
name = "metrics"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "metrics"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
gfx_traits = { path = "../gfx_traits" }
|
|
ipc-channel = { workspace = true }
|
|
log = { workspace = true }
|
|
malloc_size_of = { path = "../malloc_size_of" }
|
|
malloc_size_of_derive = { workspace = true }
|
|
msg = { path = "../msg" }
|
|
profile_traits = { path = "../profile_traits" }
|
|
script_traits = { path = "../script_traits" }
|
|
servo_config = { path = "../config" }
|
|
servo_url = { path = "../url" }
|
|
time = { workspace = true }
|