-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
32 lines (25 loc) · 867 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
26
27
28
29
30
31
32
[package]
name = "hyper-json-stream"
version = "0.3.0"
authors = ["Arnaud Poullet <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
futures-core = "0.3.30"
http = "1.1.0"
http-body-util = "0.1.0"
hyper = { version = "1.3.1", features = ["client", "http2"] }
hyper-util = { version = "0.1.5", features = ["client-legacy", "http2"] }
serde = "1.0.197"
serde_json = "1.0.117"
libz-sys = { version = "1.1.18", default-features = false }
[dev-dependencies]
hyper = "1.3.1"
hyper-rustls = { version = "0.27.2", features = ["http2"] }
serde = { version = "1.0.197", features = ["derive"] }
futures-util = "0.3.30"
tokio = { version = "1.38.0", features = ["rt", "macros", "rt-multi-thread"] }
[[example]]
name = "countries"
[[example]]
name = "countries-gzip"