-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
25 lines (23 loc) · 848 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "http-serde-ext"
version = "1.0.2"
authors = ["Andrew Toth"]
license = "MIT"
homepage = "https://github.com/andrewtoth/http-serde-ext/"
repository = "https://github.com/andrewtoth/http-serde-ext/"
documentation = "https://docs.rs/http-serde-ext/"
description = "serde support for http crate types Request, Response, Uri, StatusCode, HeaderMap, Method, in Option or other collections"
keywords = ["http", "serde", "serialization", "deserialize", "url"]
categories = ["encoding", "network-programming", "web-programming"]
readme = "README.md"
edition = "2021"
[dependencies]
http = "1"
serde = { version = "1", features = ["derive"] }
[dev-dependencies]
bincode = "1.3"
fake = { version = "2.9.2", features = ["http"] }
postcard = { version = "1.0", features = ["alloc"] }
serde_cbor = "0.11"
serde_json = "1.0"
serde_yaml = "0.9"