forked from dekellum/hyperx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (32 loc) · 924 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
35
[package]
name = "hyperx"
version = "1.4.2"
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.22" }
bytes = { version = "1.6" }
http = { version = "1.1" }
httpdate = { version = "1.0" }
language-tags = { version = "0.3" }
mime = { version = "0.3" }
percent-encoding = { version = "2.3" }
unicase = { version = "2.7" }
[features]
nightly = []
compat = [] # no-op for backward compatibility
headers = []
[package.metadata.docs.rs]
features = ["headers"]