[package] name = "yocalhost" version = "0.5.0" edition = "2021" description = "an http development server that simulates latency and bandwidth limitations" license = "MIT OR Apache-2.0" repository = "https://github.com/michaelkirk/yocalhost" exclude = ["test_data/"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["stats", "env_logger"] stats = [] [dependencies] async-speed-limit = { version = "0.4.1", features = ["tokio"] } byte-unit = "5.1.4" clap = { version = "4.4.2", features = ["derive"] } env_logger = { version = "0.11.5", optional = true } futures = "0.3.28" http-body-util = "0.1.2" hyper = { version = "1.4.1", features = ["full"] } hyper-staticfile = "0.10.1" hyper-util = { version = "0.1.7", features = ["full"] } log = "0.4.20" tokio = { version = "1.32.0", features = ["full"] } tokio-stream = "0.1.15" tokio-util = { version = "0.7.8", features = ["full"] }