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]] [[package]]
name = "granc" name = "granc"
version = "0.6.1" version = "0.7.0"
dependencies = [ dependencies = [
"clap", "clap",
"colored", "colored",
"granc_core", "granc_core 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json", "serde_json",
"tokio", "tokio",
] ]
@ -364,6 +364,26 @@ dependencies = [
"tonic-reflection", "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]] [[package]]
name = "h2" name = "h2"
version = "0.4.13" version = "0.4.13"

View file

@ -11,11 +11,11 @@ publish = true
readme = "../README.md" readme = "../README.md"
repository = { workspace = true } repository = { workspace = true }
rust-version = { workspace = true } rust-version = { workspace = true }
version = "0.6.0" version = "0.7.0"
[dependencies] [dependencies]
clap = { version = "4.5.55", features = ["derive"] } clap = { version = "4.5.55", features = ["derive"] }
colored = "3.1.1" colored = "3.1.1"
granc_core = { path = "../granc-core" } granc_core = "0.6.0"
serde_json = { workspace = true } serde_json = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }