-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathCargo.toml
33 lines (31 loc) · 876 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "async-h1"
version = "2.3.3"
license = "MIT OR Apache-2.0"
repository = "https://github.com/http-rs/async-h1"
documentation = "https://docs.rs/async-h1"
description = "Asynchronous HTTP 1.1 parser."
keywords = ["async", "http", "stream", "parser", "http1"]
categories = [
"asynchronous",
"parser-implementations",
"web-programming",
"web-programming::http-client",
"web-programming::http-server"
]
authors = ["Yoshua Wuyts <[email protected]>"]
readme = "README.md"
edition = "2018"
[dependencies]
async-channel = "1.5.1"
async-dup = "1.2.2"
async-global-executor = "2.3.1"
async-io = "1.13.0"
futures-lite = "1.13.0"
http-types = { version = "2.9.0", default-features = false }
httparse = "1.3.4"
log = "0.4.11"
pin-project = "1.0.2"
[dev-dependencies]
async-std = { version = "1.7.0", features = ["attributes"] }
pretty_assertions = "0.6.1"