forked from http-rs/http-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (33 loc) · 1.04 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 = "http-types"
version = "1.2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/http-rs/http-types"
documentation = "https://docs.rs/http-types"
description = "Common types for HTTP operations."
keywords = ["http", "types", "request", "response", "h2"]
categories = ["asynchronous", "web-programming", "web-programming::http-client", "web-programming::http-server", "web-programming::websocket"]
authors = ["Yoshua Wuyts <[email protected]>"]
readme = "README.md"
edition = "2018"
[package.metadata.docs.rs]
features = ["docs"]
rustdoc-args = ["--cfg", "feature=\"docs\""]
[features]
default = []
docs = ["unstable"]
unstable = []
hyperium_http = ["http"]
[dependencies]
anyhow = "1.0.26"
cookie = "0.12.0"
infer = "0.1.2"
omnom = "2.1.1"
pin-project-lite = "0.1.0"
url = "2.1.0"
# Note(yoshuawuyts): used for async_std's `channel` only; use "core" once possible.
async-std = { version = "1.4.0", features = ["unstable"] }
# features: hyperium/http
http = { version = "0.2.0", optional = true }
[dev-dependencies]
http = "0.2.0"