2026-01-08 21:32:59 +00:00
|
|
|
[package]
|
2026-02-04 01:02:18 +00:00
|
|
|
authors.workspace = true
|
2026-01-12 05:07:30 +00:00
|
|
|
description = "HTTP service client wrappers for provisioning platform services"
|
2026-02-04 01:02:18 +00:00
|
|
|
edition.workspace = true
|
|
|
|
|
license.workspace = true
|
2026-01-12 05:07:30 +00:00
|
|
|
name = "service-clients"
|
2026-02-04 01:02:18 +00:00
|
|
|
repository.workspace = true
|
|
|
|
|
version.workspace = true
|
2026-01-08 21:32:59 +00:00
|
|
|
|
|
|
|
|
[dependencies]
|
2026-01-12 05:07:30 +00:00
|
|
|
async-trait = { workspace = true }
|
|
|
|
|
log = { workspace = true }
|
2026-01-08 21:32:59 +00:00
|
|
|
reqwest = { workspace = true }
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
2026-01-12 05:07:30 +00:00
|
|
|
tokio = { workspace = true, features = ["full"] }
|
2026-02-04 01:02:18 +00:00
|
|
|
machines = { workspace = true }
|
2026-01-08 21:32:59 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = { workspace = true }
|
2026-01-12 05:07:30 +00:00
|
|
|
tokio-test = { workspace = true }
|