-
-
Notifications
You must be signed in to change notification settings - Fork 361
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (48 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
52 lines (48 loc) · 1.22 KB
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
[package]
name = "http"
# When releasing to crates.io:
# - Update html_root_url in lib.rs.
# - Update CHANGELOG.md.
# - Create git tag
version = "1.3.1"
readme = "README.md"
documentation = "https://docs.rs/http"
repository = "https://github.com/hyperium/http"
license = "MIT OR Apache-2.0"
authors = [
"Alex Crichton <[email protected]>",
"Carl Lerche <[email protected]>",
"Sean McArthur <[email protected]>",
]
description = """
A set of types for representing HTTP requests and responses.
"""
keywords = ["http"]
categories = ["web-programming"]
edition = "2018"
# When updating this value, don't forget to also adjust the GitHub Actions config.
rust-version = "1.49.0"
[workspace]
members = [
".",
]
exclude = [
"fuzz",
"benches"
]
[features]
default = ["std", "bytes/default", "fnv/default"]
std = ["bytes/std", "fnv/std"]
no-std = ["hashbrown", "ahash"]
[dependencies]
bytes = { version = "1", default-features = false }
fnv = { version = "1.0.5", default-features = false }
itoa = "1"
hashbrown = { version = "0.15.2", optional = true }
ahash = { version = "0.8.6", default-features = false, optional = true }
[dev-dependencies]
quickcheck = "1"
rand = "0.8.0"
serde = "1.0"
serde_json = "1.0"
doc-comment = "0.3"