chore: release (#38)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2026-01-28 14:38:53 +01:00 committed by JasterV
commit c05b4fe865
2 changed files with 24 additions and 4 deletions

24
Cargo.lock generated
View file

@ -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"

View file

@ -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"] }