-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
46 lines (39 loc) · 951 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
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "tankerkoenig"
author = "Jontze <[email protected]>"
description = "API wrapper for the tankerkoenig api"
version = "0.3.0"
edition = "2021"
rust-version = "1.75.0"
license = "MIT"
homepage = "https://github.com/jontze/tankerkoenig-rs"
repository = "https://github.com/jontze/tankerkoenig-rs"
documentation = "https://docs.rs/tankerkoenig"
readme = "README.md"
keywords = ["api-wrapper", "tankerkoenig", "api", "fuel"]
categories = ["api-bindings"]
exclude = [
".github/",
"test"
]
[dependencies]
thiserror = "1.0.66"
serde_json = "1.0.132"
async-trait = "0.1.83"
[dependencies.serde]
version = "1.0.214"
features = ["derive"]
[dependencies.strum]
version = "0.26.3"
features = ["derive"]
[dependencies.reqwest]
version = "0.12.9"
default-features = false
features = ["rustls-tls"]
[dev-dependencies]
futures = "0.3.31"
mockall = "0.13.0"
wiremock = "0.6.2"
[dev-dependencies.tokio]
version = "1.41.0"
features = ["full"]