Platform restructured into crates/, added AI service and detector,
migrated control-center-ui to Leptos 0.8
25 lines
777 B
TOML
25 lines
777 B
TOML
[package]
|
|
name = "service-clients"
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
description = "HTTP service client wrappers for provisioning platform services"
|
|
|
|
[dependencies]
|
|
reqwest = { workspace = true }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
log = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
# Service types (optional - only if not using generic types)
|
|
machines = { path = "../../../../submodules/prov-ecosystem/crates/machines" }
|
|
|
|
[dev-dependencies]
|
|
tokio-test = { workspace = true }
|
|
tempfile = { workspace = true }
|