]> piware.de Git - learn-rust.git/blob - async-http/Cargo.toml
async-http: Serve requests in parallel in threads
[learn-rust.git] / async-http / Cargo.toml
1 [package]
2 name = "async-http"
3 version = "0.1.0"
4 edition = "2021"
5
6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8 [dependencies]
9 futures = "0.3"
10 log = "0.4"
11 env_logger = "0.9"
12
13 [dependencies.async-std]
14 version = "1.6"
15 features = ["attributes"]