forked from http-rs/http-types
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 1.12 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
[package]
name = "http-types"
version = "1.3.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 <yoshuawuyts@gmail.com>"]
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]
# 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 }
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"
serde_json = "1.0.51"
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
http = "0.2.0"