forked from jmgilman/rustify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
53 lines (46 loc) · 1.39 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "rustify"
version = "0.5.2"
authors = ["Joshua Gilman <joshuagilman@gmail.com>"]
description = "A Rust library for interacting with HTTP API endpoints."
license = "MIT"
readme = "README.md"
repository = "https://github.com/jmgilman/rustify"
keywords = ["REST", "HTTP", "API", "endpoint", "client"]
categories = ["web-programming::http-client"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["reqwest/default-tls"]
blocking = ["reqwest/blocking"]
rustls-tls = ["reqwest/rustls-tls"]
[workspace]
members = [
"rustify_derive",
]
[dependencies]
anyhow = "1.0.43"
async-trait = "0.1.51"
bytes = "1.0.1"
http = "0.2.4"
reqwest = { version = "0.11.4", default-features = false, optional = true }
rustify_derive = { version = "0.5.2", path = "rustify_derive" }
serde = { version = "1.0.127", features = ["derive"] }
serde_json = "1.0.66"
serde_urlencoded = "0.7.0"
thiserror = "1.0.26"
tracing = {version = "0.1.27", features = ["log"] }
url = "2.2.2"
[dev-dependencies]
derive_builder = "0.10.2"
env_logger = "0.9.0"
httpmock = "0.6.2"
test-env-log = { version = "0.2.7", features = ["trace"] }
tokio = "1.10.0"
tokio-test = "0.4.2"
tracing-subscriber = {version = "0.2.17", default-features = false, features = ["env-filter", "fmt"]}
trybuild = "1.0.45"
[[example]]
name = "reqres1"
[[example]]
name = "reqres2"