forked from spietika/restson-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 771 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
[package]
name = "restson"
version = "0.7.0"
authors = ["Sami Pietikäinen"]
description = "Easy-to-use REST client with automatic serialization and deserialization."
repository = "https://github.com/spietika/restson-rust"
keywords = ["rest", "client", "json", "hyper"]
categories = ["network-programming", "web-programming::http-client"]
readme = "README.md"
license = "MIT"
edition = "2018"
[dependencies]
hyper = { version = "^0.13.2", default-features = false }
hyper-tls = "^0.4.1"
tokio = { version = "^0.2", features = ["time"] }
serde = "^1.0"
serde_json = "^1.0"
url = "2"
log = "^0.4.6"
base64 = "0.13"
[dev-dependencies]
serde_derive = "^1.0"
tokio = { version = "^0.2", features = ["macros"] }
[features]
default = ["blocking"]
blocking = ["tokio/macros"]