-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 718 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 718 Bytes
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
[package]
name = "tracing-texray"
description = "Tracing layer to view a plaintext timeline of spans and events"
version = "0.2.0"
edition = "2018"
authors = ["russell.r.cohen@gmail.com"]
license = "MIT"
repository = "https://github.com/rcoh/tracing-texray"
rust-version = "1.54.0"
[dependencies]
tracing-subscriber = "0.3.5"
tracing = { version = "0.1.29", default-features = false }
lazy_static = "1.4.0"
term_size = "0.3.2"
parking_lot = "0.12.1"
[dev-dependencies]
tracing-subscriber = { version = "0.3.5", features = ["env-filter"] }
tokio = { version = "1", features = ["full"]}
proptest = "1.1.0"
env_logger = "0.10.0"
loom = "0.5"
[target.'cfg(loom)'.dependencies]
loom = "0.5"
[profile.release]
debug = 1