Files
servo/components/hyper_serde/Cargo.toml
Jonathan Schwender 78ffbe8caa servo-hyper-serde: Use the workspace version (#43866)
`hyper_serde` currently has no dependants on crates.io. We give up the
independant versioning and simplify our setup by using the same version
as our workspace. The new crate is servo-hyper-serde.

Testing: Not required, policy change.

Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2026-04-02 12:25:12 +00:00

30 lines
760 B
TOML

[package]
name = "servo-hyper-serde"
version.workspace = true
edition.workspace = true
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_bytes = { workspace = true }
serde_core = { workspace = true }
[dev-dependencies]
serde = { workspace = true }
serde_test = "1.0"