mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
`std::time` is good enough for us here. `cookie` is using `time 0.3`, but Servo can convert to standard library types when getting data from `cookie`. This reduces our direct dependencies and removes more use of the very old `time 0.1` series. Signed-off-by: Martin Robinson <mrobinson@igalia.com>
28 lines
714 B
TOML
28 lines
714 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 = { workspace = true }
|
|
serde_bytes = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1.0"
|