aboutsummaryrefslogtreecommitdiffstats
path: root/components/shared/profile/Cargo.toml
blob: 8086bf17ba294ea0f8fb14f973f9154f1a2debc9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[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" }
strum_macros = { workspace = true }
time = { workspace = true }
tracing = { workspace = true, optional = true }