chore(granc): release v0.6.0

This commit is contained in:
github-actions[bot] 2026-01-27 14:17:13 +00:00 committed by GitHub
parent 69336d850e
commit 3d2b4e6b29
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 28 additions and 2 deletions

View file

@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## `granc` - [0.6.0](https://github.com/JasterV/granc/compare/granc-v0.5.1...granc-v0.6.0) - 2026-01-27
### Other
- release ([#32](https://github.com/JasterV/granc/pull/32))
- [feature] + [refactor] => Allow ALL commands to be executed against a local file descriptor ([#28](https://github.com/JasterV/granc/pull/28))
## `granc` - [0.6.0](https://github.com/JasterV/granc/compare/granc-v0.5.1...granc-v0.6.0) - 2026-01-27
- Make the `--file-descriptor-set` a global option for all commands, so reflection commands can also be executed against a local descriptor. ([#28](https://github.com/JasterV/granc/pull/28))
## `granc_core` - [0.5.0](https://github.com/JasterV/granc/compare/granc_core-v0.4.1...granc_core-v0.5.0) - 2026-01-27

24
Cargo.lock generated
View file

@ -336,11 +336,11 @@ dependencies = [
[[package]]
name = "granc"
version = "0.5.2"
version = "0.6.0"
dependencies = [
"clap",
"colored",
"granc_core",
"granc_core 0.5.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.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4375e91b7a00f76c4248eeaa67ce5fe0f62087c6c3139f2b6588c06982fce1cd"
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"