forked from hyperium/http
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
58 lines (51 loc) · 1.34 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[package]
name = "http"
# When releasing to crates.io:
# - Update html_root_url in lib.rs.
# - Update CHANGELOG.md.
# - Create git tag
version = "0.2.1"
readme = "README.md"
documentation = "https://docs.rs/http"
repository = "https://github.com/hyperium/http"
license = "MIT/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"
exclude = ["/sgx/*"]
[dependencies]
bytes = { git = "https://github.com/mesalock-linux/bytes-sgx" }
fnv = { git = "https://github.com/mesalock-linux/rust-fnv-sgx" }
itoa = { git = "https://github.com/mesalock-linux/itoa-sgx" }
sgx_tstd = { rev = "v1.1.3", git = "https://github.com/apache/teaclave-sgx-sdk.git", optional = true }
[features]
default = ["mesalock_sgx"]
mesalock_sgx = ["sgx_tstd"]
[dev-dependencies]
#indexmap = "1.0"
#quickcheck = "0.9.0"
#rand = "0.7.0"
#seahash = "3.0.5"
#serde = "1.0"
#serde_json = "1.0"
#doc-comment = "0.3"
[[bench]]
name = "header_map"
path = "benches/header_map/mod.rs"
[[bench]]
name = "header_name"
path = "benches/header_name.rs"
[[bench]]
name = "header_value"
path = "benches/header_value.rs"
[[bench]]
name = "uri"
path = "benches/uri.rs"