-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (37 loc) · 1.53 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
# cargo-features = ["public-dependency"]
[package]
name = "tracing-durations-export"
version = "0.3.0"
edition = "2021"
description = "Record and visualize parallelism of tracing spans"
license = "MIT OR Apache-2.0"
readme = "Readme.md"
repository = "https://github.com/konstin/tracing-durations-export"
categories = ["asynchronous", "development-tools::debugging", "development-tools::profiling"]
keywords = ["tracing"]
[[bin]]
name = "plot"
required-features = ["plot", "cli"]
[dependencies]
anyhow = { version = "1.0.86", optional = true }
clap = { version = "4.5.16", optional = true, features = ["derive"] }
fs = { package = "fs-err", version = "2.11.0" }
itertools = { version = "0.13.0", optional = true }
once_cell = "1.19.0"
rustc-hash = { version = "2.0.0", optional = true }
serde = { version = "1.0.208", features = ["derive"] } # public = true
serde_json = "1.0.125"
svg = { version = "0.17.0", optional = true } # public = true
tracing = { version = "0.1.40", default-features = false } # public = true
tracing-subscriber = { version = "0.3.18", default-features = false } # public = true
[features]
plot = ["anyhow", "itertools", "rustc-hash", "svg"]
cli = ["clap"]
[dev-dependencies]
futures = "0.3.30"
rand = "0.8.5"
tokio = { version = "1.39.3", features = ["rt-multi-thread", "macros", "sync", "time"] }
tracing = { version = "0.1.40", default-features = false, features = ["attributes"] }
tracing-subscriber = { version = "0.3.18", default-features = false, features = ["fmt", "std", "registry"] }
[package.metadata.docs.rs]
features = ["plot"]