-
Notifications
You must be signed in to change notification settings - Fork 487
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add support for custom metadata in cluster configuration (#3667)
* Add support for cluster annotations * Add metadata to cluster * Bump crate version * Add cluster metadata path methods * Simplify metadata implementation
- Loading branch information
1 parent
087119e
commit f4b9622
Showing
5 changed files
with
317 additions
and
41 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "fluvio" | ||
version = "0.21.1" | ||
version = "0.21.2" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
authors = ["Fluvio Contributors <[email protected]>"] | ||
|
@@ -44,7 +44,7 @@ pin-project = { workspace = true } | |
siphasher = { workspace = true } | ||
|
||
|
||
toml = { workspace = true, features = ["display"] } | ||
toml = { workspace = true, features = ["display", "preserve_order"] } | ||
tracing = { workspace = true } | ||
|
||
# Fluvio dependencies | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.