[workspace] resolver = "2" members = [ "crates/novanet-types", "crates/novanet-api", "crates/novanet-server", ] [workspace.package] version = "0.1.0" edition = "2021" authors = ["NovaNET Team"] license = "MIT OR Apache-2.0" repository = "https://github.com/example/novanet" [workspace.dependencies] # Internal crates novanet-types = { path = "crates/novanet-types" } novanet-api = { path = "crates/novanet-api" } # Async runtime tokio = { version = "1", features = ["full"] } # gRPC tonic = "0.12" tonic-health = "0.12" prost = "0.13" prost-types = "0.13" # Serialization serde = { version = "1", features = ["derive"] } serde_json = "1" # Utilities uuid = { version = "1", features = ["v4", "serde"] } thiserror = "1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } clap = { version = "4", features = ["derive"] } dashmap = "6" anyhow = "1" [workspace.dependencies.tonic-build] version = "0.12"