mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
In addition to some small API changes, this downstream version of
WebRender no longer depends on a very old version of time. This is the
last step toward removing the dependency on `time0.1`.
The review for this commit should also include: 9f552bebab
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
26 lines
631 B
TOML
26 lines
631 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 }
|
|
serde = { workspace = true }
|
|
servo_config = { path = "../../config" }
|
|
signpost = { git = "https://github.com/pcwalton/signpost.git" }
|
|
time = { workspace = true }
|
|
tracing = { workspace = true, optional = true }
|