-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Compaction routine is now well-tested. Woot woot! Operator has been updated to pass along retention policy config to stream. Updated deps across all components. closes #99
- Loading branch information
Showing
39 changed files
with
1,133 additions
and
822 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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,16 +1,16 @@ | ||
[package] | ||
name = "pipeline-txp" | ||
version = "0.1.0" | ||
edition = "2018" | ||
edition = "2021" | ||
authors = ["Anthony Dodd <dodd.anthonyjosiah@gmail.com>"] | ||
|
||
[dependencies] | ||
anyhow = "1.0.44" | ||
anyhow = "1" | ||
hadron = { package = "hadron-client", version = "0.1.0-beta.1" } | ||
sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "postgres", "offline", "time" ] } | ||
tokio = { version = "1", default-features = false, features = [ | ||
# See https://docs.rs/tokio/latest/tokio/#feature-flags | ||
"rt", "macros", "sync", "signal", | ||
]} | ||
tracing = { version = "0.1", features = ["attributes"] } | ||
tracing-subscriber = "0.2" | ||
tracing-subscriber = { version = "0.3", features = ["env-filter", "registry"] } |
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.