Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PLATFORM-1085]: Add some event bus specific impl #155

Merged
Merged
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add dependencies for kafka and rabbit behind features
cottinisimone committed May 9, 2023
commit 5d46c26d85f88083e5774a78301b5dec0ca3b448
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -28,6 +28,8 @@ members = [

[features]
postgres = ["sqlx/postgres"]
kafka = ["rdkafka"]
rabbit = ["lapin"]

[dependencies]
# Serialization/Deserialization
@@ -45,6 +47,11 @@ ouroboros = "0.15"

# Sql library for async impl
sqlx = { version = "0.6.1", features = ["runtime-tokio-native-tls", "uuid", "json", "chrono"], optional = true }
# Kafka library
rdkafka = { version = "0.29.*", features = ["ssl-vendored"], optional = true }
# Rabbit library
lapin = { version = "2.1.1", optional = true }

# To stream over sqlx results
futures = "0.3"
tracing = "0.1"