diff --git a/Cargo.lock b/Cargo.lock index 48bd427..5bccec5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -336,11 +336,11 @@ dependencies = [ [[package]] name = "granc" -version = "0.6.1" +version = "0.7.0" dependencies = [ "clap", "colored", - "granc_core", + "granc_core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", "serde_json", "tokio", ] @@ -364,6 +364,26 @@ dependencies = [ "tonic-reflection", ] +[[package]] +name = "granc_core" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e87c4196f9cdf96a69381385c7029aab768d4d7bc6b1ff90654bf6c3eb19d2" +dependencies = [ + "futures-util", + "http", + "http-body", + "prost", + "prost-reflect", + "prost-types", + "serde_json", + "thiserror", + "tokio", + "tokio-stream", + "tonic", + "tonic-reflection", +] + [[package]] name = "h2" version = "0.4.13" diff --git a/granc/Cargo.toml b/granc/Cargo.toml index 7c69995..7ff5079 100644 --- a/granc/Cargo.toml +++ b/granc/Cargo.toml @@ -11,11 +11,11 @@ publish = true readme = "../README.md" repository = { workspace = true } rust-version = { workspace = true } -version = "0.6.0" +version = "0.7.0" [dependencies] clap = { version = "4.5.55", features = ["derive"] } colored = "3.1.1" -granc_core = { path = "../granc-core" } +granc_core = "0.6.0" serde_json = { workspace = true } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }