Skip to content

Commit

Permalink
feat: changed to use rdkafka lib
Browse files Browse the repository at this point in the history
  • Loading branch information
paulobressan committed Jul 3, 2024
1 parent 5eb80e0 commit 7863068
Show file tree
Hide file tree
Showing 10 changed files with 231 additions and 246 deletions.
217 changes: 95 additions & 122 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ async-trait = "0.1.80"
sqlx = { version = "0.7.4", features = ["runtime-tokio-rustls", "sqlite"] }
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread", "time"] }
tonic = "0.11.0"
kafka = "0.10.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
tracing = "0.1.40"
Expand All @@ -26,6 +25,7 @@ k8s-openapi = { version = "0.22.0", features = ["latest"] }
kube = { version = "0.92.0", features = ["client"] }
protoc-wkt = "1.0.0"
config = { version = "0.14.0", features = ["toml"] }
rdkafka = "0.36.2"

[dev-dependencies]
mockall = "0.12.1"
Expand Down
3 changes: 3 additions & 0 deletions examples/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
addr="0.0.0.0:5000"
db_path="dev.db"
brokers="localhost:19092"
Loading

0 comments on commit 7863068

Please sign in to comment.