move repos into monorepo

This commit is contained in:
Timur Gordon
2025-11-13 20:44:00 +01:00
commit 4b23e5eb7f
204 changed files with 33737 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
[package]
name = "osiris-client"
version.workspace = true
edition.workspace = true
description = "Osiris client library"
license = "MIT OR Apache-2.0"
[dependencies]
# Core dependencies
serde.workspace = true
serde_json.workspace = true
anyhow.workspace = true
thiserror.workspace = true
chrono.workspace = true
# HTTP client
reqwest = { version = "0.12", default-features = false, features = ["json"] }
# Hero dependencies
hero-supervisor-openrpc-client = { path = "../supervisor" }
hero-job = { path = "../../models/job" }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
uuid.workspace = true
[target.'cfg(target_arch = "wasm32")'.dependencies]
uuid = { workspace = true, features = ["js"] }
getrandom.workspace = true
[dev-dependencies]
tokio.workspace = true