-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
39 lines (36 loc) · 1.07 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
[package]
name = "hyperx"
version = "1.4.0"
description = "Hyper's typed header module, eXtracted and improved"
readme = "README.md"
documentation = "https://docs.rs/hyperx"
repository = "https://github.com/dekellum/hyperx"
license = "MIT"
authors = ["David Kellum <[email protected]>"]
keywords = ["http", "hyper", "hyperium"]
categories = [
"network-programming",
"web-programming::http-client",
"web-programming::http-server"
]
exclude = [
".gitignore",
".travis.yml",
"appveyor.yml",
]
build = "build.rs"
[dependencies]
base64 = { version=">=0.10.1, <0.14" }
bytes = { version=">=1.0.0, <1.2.0" }
http = { version=">=0.2.2, <0.3" }
httpdate = { version=">=0.3.2, <1.1" }
language-tags = { version=">=0.3.1, <0.4" }
mime = { version=">=0.3.2, <0.4" }
percent-encoding = { version=">=2.1.0, <2.2" }
unicase = { version=">=2.6.0, <2.7" }
[features]
nightly = []
compat = [] # no-op for backward compatibility
headers = []
[package.metadata.docs.rs]
features = ["headers"]