servo/components/hyper_serde/Cargo.toml
Narfinger e3e2dcb5a2
Allow hyper_serde to only depend on serde_core for potentially faster compile times. (#39467)
Serde_core was released which has all the traits and allows some crates
to have parallel compile times.
More information can be found here:
https://github.com/serde-rs/serde/tree/master/serde_core
serde_bytes already depends on on serde_core. Additionally added serde
and serde_core to dependabot group.

Signed-off-by: Narfinger <Narfinger@users.noreply.github.com>

Testing: Compilation is the test.

---------

Signed-off-by: Narfinger <Narfinger@users.noreply.github.com>
2025-09-25 15:54:21 +00:00

29 lines
748 B
TOML

[package]
name = "hyper_serde"
version = "0.13.2"
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"