mirror of
https://github.com/servo/servo.git
synced 2025-09-29 16:19:14 +01:00
This changes removes the integration with Instruments.app "Points of Interest" track for a variety of reasons: - This functionality is made somewhat redundant by Servo's support for Perfetto traces. - This functionality depends on the `signpost` crate which hasn't seen activity for 9 years and only supports macOS. Testing: This removes some functionality that is only observable via Instruments.app, so testing it is difficult. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
28 lines
697 B
TOML
28 lines
697 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 }
|
|
malloc_size_of = { workspace = true }
|
|
malloc_size_of_derive = { workspace = true }
|
|
serde = { workspace = true }
|
|
servo_allocator = { path = "../../allocator" }
|
|
servo_config = { path = "../../config" }
|
|
time = { workspace = true }
|
|
tracing = { workspace = true, optional = true }
|