Skip to content
Merged
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
206 changes: 205 additions & 1 deletion Cargo.lock

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

5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ redis = { version = "1.0", features = ["tokio-comp", "connection-manager"] }
tokio-postgres = "0.7"
tokio-util = { version = "0.7", features = ["io", "io-util"], optional = true }

# Optional NATS output sink.
async-nats = { version = "0.47", optional = true }

# Optional JS hooks (Boa engine). When disabled, sources with hooks config are ignored.
boa_engine = { version = "0.21", optional = true }
boa_gc = { version = "0.21", optional = true }
Expand All @@ -47,6 +50,8 @@ default = []
hooks = ["dep:boa_engine", "dep:boa_gc", "dep:boa_runtime"]
# Streaming JSON parse: parse events one-at-a-time from buffered bytes (Phase 2) or async stream (Phase 3).
streaming = ["dep:tokio-util"]
# NATS output sink: publish NDJSON lines to a NATS subject.
nats = ["dep:async-nats"]
# Run integration tests that spin up Redis/Postgres via testcontainers (requires Docker).
# Usage: cargo test --features testcontainers --test integration_testcontainers
testcontainers = []
Expand Down
Loading
Loading