-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
62 lines (52 loc) · 1.25 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[workspace]
members = [
"examples"
, "mco-http-rustls"]
[package]
name = "mco-http"
version = "0.1.32"
edition = "2021"
description = "A modern HTTP library."
readme = "README.md"
license = "MIT/Apache-2.0"
repository = "https://github.com/co-rs/mco-http.git"
homepage = "https://github.com/co-rs"
authors = ["zhuxiujia <[email protected]>",
"Sean McArthur <[email protected]>",
"Jonathan Reem <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
include = [
"Cargo.toml",
"LICENSE",
"src/**/*"
]
[features]
default = ["runtime_mco", "serde_json"]
runtime_thread = ["dark-std"]
runtime_mco = ["mco"]
nightly = []
[dependencies]
base64 = "0.21.5"
httparse = "1"
language-tags = "0.2.2"
log = "0.4"
mime = "0.2"
time = "0.1"
traitobject = "0.1"
typeable = "0.1"
unicase = "1.0"
url = "1.0"
mco = { version = "0.1", optional = true }
crossbeam = "0.8"
crossbeam-channel = "0.5"
encoding = "0.2"
textnonce = "1"
buf-read-ext = "0.4.0"
serde_urlencoded = "0.7"
httpdate = "1"
serde = "1"
serde_json = { version = "1", optional = true }
#only runtime_thread
dark-std = { version = "0.2", optional = true }
num_cpus = { version = "1.0", features = [] }
[dev-dependencies]