-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (68 loc) · 2.01 KB
/
Copy pathCargo.toml
File metadata and controls
73 lines (68 loc) · 2.01 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[workspace]
members = ["hubuum_reconcile", "e2e_client"]
resolver = "3"
[package]
name = "hubuum_client"
version = "0.9.1"
edition = "2024"
rust-version = "1.88"
license = "MIT"
description = "Rust client library targeting Hubuum server v0.0.9 with synchronous and asynchronous interfaces."
repository = "https://github.com/hubuum/hubuum-client-rust"
documentation = "https://docs.rs/hubuum_client"
readme = "README.md"
keywords = ["hubuum", "api", "client", "async"]
categories = ["api-bindings"]
exclude = [
".github/",
"hubuum_reconcile/",
"openapi/",
"scripts/",
"tests/",
]
[package.metadata.hubuum]
server-version = "0.0.9"
server-image = "ghcr.io/hubuum/hubuum-server@sha256:1f12baf882b6d3df5b4b2dbdf26aad0793274e57f86a2c186b8e1e68632db5db"
[features]
default = ["async"]
async = [
"tokio",
"reqwest/json",
"reqwest/rustls",
"reqwest/stream",
"dep:async-stream",
"dep:bytes",
"dep:futures-core",
"dep:futures-util",
]
blocking = ["reqwest/blocking", "reqwest/json", "reqwest/rustls"]
integration-tests = []
typed-schemas = ["dep:schemars"]
[dependencies]
reqwest = { version = "0.13", default-features = false }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
chrono = { version = "0.4", features = ["serde"] }
url = "2"
serde_urlencoded = "0.7"
log = "0.4"
percent-encoding = "2"
secrecy = { version = "0.10", features = ["serde"] }
serde_path_to_error = "0.1"
strum = { version = "0.28", features = ["derive", "strum_macros"] }
tokio = { version = "1", features = ["fs", "io-util", "rt", "time"], optional = true }
async-stream = { version = "0.3", optional = true }
bytes = { version = "1", optional = true }
fastrand = "2"
futures-core = { version = "0.3", optional = true }
futures-util = { version = "0.3", optional = true }
httpdate = "1"
schemars = { version = "1", features = ["chrono04"], optional = true }
tempfile = "3"
[dev-dependencies]
tokio = { version = "1", features = ["full"] }
yare = "3"
httpmock = "0.8"
rstest = "0.26"
trybuild = "1"