[package]
edition = "2021"
name = "streamling-e2e"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "End-to-end tests for streamling"
readme = "README.md"
license-file = "LICENSE.txt"
repository = "https://github.com/goldsky-io/streamling"
resolver = "3"
[lib]
name = "streamling_e2e"
path = "src/lib.rs"
[[bin]]
name = "streamling-e2e-inspect"
path = "src/bin/inspect.rs"
[[test]]
name = "checkpoint"
path = "tests/checkpoint.rs"
[[test]]
name = "clickhouse_sink"
path = "tests/clickhouse_sink.rs"
[[test]]
name = "clickhouse_source"
path = "tests/clickhouse_source.rs"
[[test]]
name = "external_handlers"
path = "tests/external_handlers.rs"
[[test]]
name = "filters"
path = "tests/filters.rs"
[[test]]
name = "hybrid_source"
path = "tests/hybrid_source.rs"
[[test]]
name = "kafka_sink"
path = "tests/kafka_sink.rs"
[[test]]
name = "metrics"
path = "tests/metrics.rs"
[[test]]
name = "multi_sink"
path = "tests/multi_sink.rs"
[[test]]
name = "postgres_aggregate"
path = "tests/postgres_aggregate.rs"
[[test]]
name = "postgres_sink"
path = "tests/postgres_sink.rs"
[[test]]
name = "print_sink"
path = "tests/print_sink.rs"
[[test]]
name = "schema_evolution"
path = "tests/schema_evolution.rs"
[[test]]
name = "sql_transforms"
path = "tests/sql_transforms.rs"
[[test]]
name = "transforms"
path = "tests/transforms.rs"
[[test]]
name = "validation"
path = "tests/validation.rs"
[[test]]
name = "webhook_sink"
path = "tests/webhook_sink.rs"
[dependencies.apache-avro]
version = "0.17"
default-features = false
[dependencies.aws-config]
version = "1"
features = [
"behavior-version-latest",
"rt-tokio",
"credentials-process",
"default-https-client",
]
default-features = false
[dependencies.aws-sdk-sqs]
version = "1"
features = [
"default-https-client",
"rt-tokio",
]
default-features = false
[dependencies.aws-types]
version = "1"
[dependencies.axum]
version = "0.8"
[dependencies.clickhouse]
version = "0.13"
[dependencies.rdkafka]
version = "0.37"
features = ["ssl"]
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = ["json"]
[dependencies.schema_registry_converter]
version = "4.3.0"
features = ["avro"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sqlx]
version = "0.8"
features = [
"postgres",
"mysql",
"runtime-tokio",
"tls-rustls",
]
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"full",
"process",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.url]
version = "2"
[dependencies.urlencoding]
version = "2"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies]