breeze/Cargo.toml

21 lines
526 B
TOML
Raw Normal View History

2022-12-28 21:57:06 -06:00
[package]
name = "breeze"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.1", features = ["macros"] }
2022-12-28 21:57:06 -06:00
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7.4", features = ["full"] }
tokio-stream = "0.1"
tower = "0.4.13"
bytes = "1"
rand = "0.8.5"
2023-01-08 18:08:24 -06:00
log = "0.4"
simplelog = "^0.12.0"
mime_guess = "2.0.4"
2022-12-28 21:57:06 -06:00
memory-cache-rs = "0.2.0"