servo/components/hyper_serde/Cargo.toml
Martin Robinson 569c4a8823
Integrate hyper_serde into Servo source (#30803)
hyper_serde changes very infrequently and typically only in order to
upgrade Servo dependencies. crates.io lists hyper_serde as having no
dependents, and its integration will not prevent releasing new versions.
Integrating it will both reduce the number of repositories we have to
maintain as well as making it easier to upgrade Servo dependencies.
2023-12-14 11:43:10 +00:00

29 lines
734 B
TOML

[package]
name = "hyper_serde"
version = "0.13.2"
edition = "2018"
authors = ["The Servo Project Developers"]
description = "Serde support for hyper types."
license = "MIT OR Apache-2.0"
repository = "https://github.com/servo/servo"
documentation = "https://docs.rs/hyper_serde"
categories = ["encoding", "web-programming"]
keywords = ["serde", "serialization", "hyper", "cookie", "mime"]
[lib]
path = "lib.rs"
doctest = false
test = false
[dependencies]
cookie = { workspace = true }
headers = { workspace = true }
http = { workspace = true }
hyper = { workspace = true }
mime = { workspace = true }
serde = { workspace = true }
serde_bytes = { workspace = true }
time = { workspace = true }
[dev-dependencies]
serde_test = "1.0"