mirror of
https://github.com/servo/servo.git
synced 2025-09-27 15:20:09 +01:00
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>
29 lines
748 B
TOML
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"
|