Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions .pre-commit-config.yaml
144 changes: 144 additions & 0 deletions Cargo.lock

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

3 changes: 3 additions & 0 deletions crates/arroyo-connectors/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,8 @@ rustls = "0.22"
async-nats = "0.38.0"
nkeys = "0.3.0"

# ZMQ
zmq = "0.10.0"

[build-dependencies]
glob = "0.3"
2 changes: 2 additions & 0 deletions crates/arroyo-connectors/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ pub mod sse;
pub mod stdout;
pub mod webhook;
pub mod websocket;
pub mod zmq;

pub fn connectors() -> HashMap<&'static str, Box<dyn ErasedConnector>> {
let connectors: Vec<Box<dyn ErasedConnector>> = vec![
Expand All @@ -56,6 +57,7 @@ pub fn connectors() -> HashMap<&'static str, Box<dyn ErasedConnector>> {
Box::new(stdout::StdoutConnector {}),
Box::new(webhook::WebhookConnector {}),
Box::new(websocket::WebsocketConnector {}),
Box::new(zmq::ZmqConnector {}),
];

connectors.into_iter().map(|c| (c.name(), c)).collect()
Expand Down
Loading