[package] name = "osiris-client" version = "0.1.0" edition = "2021" [dependencies] serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" reqwest = { version = "0.12", default-features = false, features = ["json"] } anyhow = "1.0" thiserror = "1.0" chrono = "0.4" hero-supervisor-openrpc-client = { git = "https://git.ourworld.tf/herocode/supervisor.git", features = ["openrpc_client"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] uuid = { version = "1.0", features = ["v4"] } [target.'cfg(target_arch = "wasm32")'.dependencies] uuid = { version = "1.0", features = ["v4", "js"] } getrandom = { version = "0.2", features = ["js"] } [dev-dependencies] tokio = { version = "1.23", features = ["full", "macros"] }