-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (25 loc) · 870 Bytes
/
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
[package]
name = "reqray"
description = "Log 'request x-rays' for rust programs instrumented with `tracing`."
version = "0.4.4-alpha.0"
authors = ["Peter Kolloch <info@eigenvalue.net>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/kolloch/reqray"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["registry"] }
quanta = "0.9"
[dev-dependencies]
criterion = "0.3"
indoc = "1.0"
tracing-subscriber = { version = "0.3", features = ["registry", "env-filter"] }
tracing-futures = { version = "0.2", features = ["tokio", "futures-03", "std-future"]}
futures = "0.3"
tokio = { version = "1.15.0", features = ["full"] }
async-std = "1.8"
tracing-appender = "0.2.0"
[[bench]]
name = "overhead"
harness = false