-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (35 loc) · 1.17 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
[package]
name = "porkbun-rs"
version = "0.1.0"
authors = [
"Rodrigo Sanabria <[email protected]>",
"Kevin López <[email protected]>",
]
edition = "2018"
description = "Porkbun API client"
repository = "https://github.com/muchobien/porkbun-rs"
readme = "README.md"
license = "MIT"
keywords = ["porkbun", "api", "client"]
categories = ["web-programming::http-client", "api-bindings"]
[features]
default = ["client_api"]
client_api = ["async-trait", "thiserror", "reqwest", "futures-util", "itertools"]
[dependencies]
async-trait = { version = "~0.1", optional = true }
reqwest = { version = "~0.11.0", features = ["blocking", "json"], optional = true }
thiserror = { version = "^1.0.25", optional = true }
futures-util = { version = "0.3.15", default-features = false, optional = true }
itertools = { version = "~0.10", optional = true }
bytes = "~1.0"
chrono = { version = "~0.4", features = ["serde"] }
http = "~0.2"
serde = { version = "~1.0", features = ["derive"] }
serde_json = "^1.0"
url = "^2.2"
log = "~0.4.14"
derive_builder = "~0.10"
[dev-dependencies]
itertools = { version = "~0.10" }
tokio = { version = "1.6", features = ["macros", "rt-multi-thread"] }
eyre = "0.6"