-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
56 lines (44 loc) · 1.3 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
54
55
[package]
name = "dco3"
version = "0.17.1"
edition = "2021"
authors = ["Octavio Simone"]
repository = "https://github.com/unbekanntes-pferd/dco3"
homepage = "https://github.com/unbekanntes-pferd/dco3"
license = "MIT"
readme = "README.md"
keywords = ["dracoon", "api-client", "rust-sdk"]
description = "Async API wrapper for DRACOON in Rust."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# http
reqwest = {version = "0.12", features = ["json", "stream"]}
reqwest-middleware = {version = "0.4", features = ["json"]}
reqwest-retry = "0.7"
# crypto
dco3_crypto = "0.7"
# async runtime and utils
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["full"] }
async-trait = "0.1"
async-stream = "0.3"
futures-util = "0.3"
bytes = "1"
# parsing
serde = { version = "1", features = ["derive"] }
serde-xml-rs = "0.6"
serde_json = "1"
# error handling
thiserror = "1"
retry-policies = "0.4"
# logging and tracing
tracing = "0.1"
# utils
url = "2"
base64 = "0.22"
chrono = {version = "0.4", features = ["serde"]}
dco3_derive = { path = "dco3_derive", version = "0.2.0"}
secrecy = {version = "0.10", features = ["serde"]}
[dev-dependencies]
mockito = "1"
tracing-subscriber = {version = "0.3", features = ["env-filter"]}