Restructure Osiris: separate core, client, and server crates to avoid circular dependencies
This commit is contained in:
@@ -6,9 +6,18 @@ edition = "2021"
|
||||
[dependencies]
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
reqwest = { version = "0.11", features = ["json"] }
|
||||
reqwest = { version = "0.12", default-features = false, features = ["json"] }
|
||||
anyhow = "1.0"
|
||||
thiserror = "1.0"
|
||||
chrono = "0.4"
|
||||
hero-supervisor-openrpc-client = { path = "../../supervisor/clients/openrpc" }
|
||||
|
||||
[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"] }
|
||||
|
||||
Reference in New Issue
Block a user