CS110L-Lab/proj-2/balancebeam/Cargo.toml
2023-03-08 12:03:06 +08:00

26 lines
585 B
TOML

[package]
name = "balancebeam"
version = "0.1.0"
authors = ["Ryan Eberhardt <reberhardt7@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.1.8", features = ["derive"] }
httparse = "1.8"
http = "0.2.9"
log = "0.4.17"
env_logger = "0.10.0"
pretty_env_logger = "0.4"
threadpool = "1.8.1"
tokio = { version = "1.26", features = ["full"] }
rand = "0.8.5"
parking_lot = "0.12.1"
[dev-dependencies]
nix = "0.26.2"
hyper = "0.14.24"
reqwest = "0.11.14"
async-trait = "0.1.66"