forked from http-rs/async-h1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (32 loc) · 885 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
34
[package]
name = "async-h1"
version = "2.3.0"
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 <yoshuawuyts@gmail.com>"]
readme = "README.md"
edition = "2018"
[dependencies]
httparse = "1.3.4"
async-std = "1.7.0"
http-types = { version = "2.9.0", default-features = false }
byte-pool = "0.2.2"
lazy_static = "1.4.0"
futures-core = "0.3.8"
log = "0.4.11"
pin-project = "1.0.2"
async-channel = "1.5.1"
async-dup = "1.2.2"
[dev-dependencies]
pretty_assertions = "0.6.1"
async-std = { version = "1.7.0", features = ["attributes"] }