15 lines
431 B
TOML
15 lines
431 B
TOML
[package]
|
|
name = "bench_app"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.74", features = ["backtrace"] }
|
|
clap = "4.3.21"
|
|
thiserror = "1.0.46"
|
|
tokio = { version = "1.31.0", features = ["rt", "macros", "parking_lot"] }
|
|
tracing = { version = "0.1.37", features = ["log"] }
|
|
tracing-subscriber = "0.3.17"
|