-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
42 lines (39 loc) · 1.32 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
[package]
name = "clevercloud-sdk"
description = "A rust client and structures to interact with the Clever-Cloud API."
version = "0.13.0"
edition = "2024"
rust-version = "1.85.0"
authors = ["Florentin Dubois <[email protected]>"]
license-file = "LICENSE"
readme = "README.md"
repository = "https://github.com/CleverCloud/clevercloud-sdk-rust"
keywords = ["clevercloud", "sdk", "logging", "metrics", "jsonschemas"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-trait = "^0.1.86"
chrono = { version = "^0.4.39", features = ["serde"] }
oauth10a = { version = "^2.0.1", default-features = false, features = [
"client",
] }
log = { version = "^0.4.26", optional = true }
schemars = { version = "^0.8.21", features = [
"chrono",
"indexmap1",
"uuid1",
"bytes",
"url",
], optional = true }
serde = { version = "^1.0.218", features = ["derive"] }
serde_repr = "^0.1.19"
serde_json = "^1.0.139"
thiserror = "^2.0.11"
tracing = { version = "^0.1.41", optional = true }
uuid = { version = "^1.14.0", features = ["serde", "v4"] }
[features]
default = ["logging"]
jsonschemas = ["schemars"]
logging = ["oauth10a/logging", "tracing/log-always", "log"]
metrics = ["oauth10a/metrics"]
tracing = ["oauth10a/tracing", "dep:tracing"]
tokio = ["oauth10a/tokio"]