[package]
edition = "2024"
name = "hubuum_client"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust client library for the Hubuum API with synchronous and asynchronous interfaces."
documentation = "https://docs.rs/hubuum_client"
readme = "README.md"
keywords = [
"hubuum",
"api",
"client",
"async",
]
categories = ["api-bindings"]
license = "MIT"
repository = "https://github.com/hubuum/hubuum-client-rust"
[features]
integration-tests = []
[lib]
name = "hubuum_client"
path = "src/lib.rs"
[[test]]
name = "client_behavior"
path = "tests/client_behavior.rs"
[[test]]
name = "container_integration"
path = "tests/container_integration.rs"
[[test]]
name = "shared_scenarios"
path = "tests/shared_scenarios.rs"
[dependencies.async-trait]
version = "0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hubuum_client_derive]
version = "0.0.2"
[dependencies.log]
version = "0"
[dependencies.percent-encoding]
version = "2"
[dependencies.reqwest]
version = "0"
features = [
"json",
"blocking",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_urlencoded]
version = "0"
[dependencies.strum]
version = "0.28"
features = [
"derive",
"strum_macros",
]
[dependencies.thiserror]
version = "2"
[dependencies.url]
version = "2"
[dev-dependencies.httpmock]
version = "0.8"
[dev-dependencies.rstest]
version = "0.26"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.yare]
version = "3"