15 lines
301 B
TOML
15 lines
301 B
TOML
[package]
|
|
name = "hardware-tests"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "bgbench"
|
|
path = "src/main.rs"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
chrono = "0.4.20"
|
|
clap = { version = "3.2.16", features = ["derive"] }
|