mirror of
https://github.com/openharmony/third_party_rust_http.git
synced 2026-07-19 14:43:33 -04:00
55 lines
1.0 KiB
TOML
55 lines
1.0 KiB
TOML
[package]
|
|
name = "http"
|
|
# When releasing to crates.io:
|
|
# - Update html_root_url in lib.rs.
|
|
# - Update CHANGELOG.md.
|
|
# - Create git tag
|
|
version = "0.2.0-alpha.0"
|
|
readme = "README.md"
|
|
documentation = "https://docs.rs/http"
|
|
repository = "https://github.com/hyperium/http"
|
|
license = "MIT/Apache-2.0"
|
|
authors = [
|
|
"Alex Crichton <alex@alexcrichton.com>",
|
|
"Carl Lerche <me@carllerche.com>",
|
|
"Sean McArthur <sean@seanmonstar.com>",
|
|
]
|
|
description = """
|
|
A set of types for representing HTTP requests and responses.
|
|
"""
|
|
keywords = ["http"]
|
|
categories = ["web-programming"]
|
|
|
|
# 0.2.x isn't ready just yet
|
|
publish = false
|
|
|
|
[dependencies]
|
|
bytes = "0.4"
|
|
fnv = "1.0.5"
|
|
itoa = "0.4.1"
|
|
|
|
[dev-dependencies]
|
|
indexmap = "1.0"
|
|
quickcheck = "0.6"
|
|
rand = "0.4"
|
|
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"
|