[package]
edition = "2021"
rust-version = "1.88"
name = "cdcflow"
version = "0.1.0"
build = false
exclude = ["benchmark/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Change Data Capture (CDC) pipeline in Rust"
homepage = "https://github.com/manfredcml/cdcflow"
readme = "README.md"
keywords = [
"cdc",
"change-data-capture",
"replication",
"postgres",
"mysql",
]
categories = [
"database",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/manfredcml/cdcflow"
[lib]
name = "cdcflow"
path = "src/lib.rs"
[[bin]]
name = "cdcflow"
path = "src/main.rs"
[[test]]
name = "admin_integration"
path = "tests/admin_integration.rs"
[[test]]
name = "iceberg_integration"
path = "tests/iceberg_integration.rs"
[[test]]
name = "kafka_integration"
path = "tests/kafka_integration.rs"
[[test]]
name = "mysql_integration"
path = "tests/mysql_integration.rs"
[[test]]
name = "postgres_integration"
path = "tests/postgres_integration.rs"
[[test]]
name = "postgres_sink_integration"
path = "tests/postgres_sink_integration.rs"
[dependencies.arrow-array]
version = "57"
[dependencies.arrow-schema]
version = "57"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
features = ["json"]
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "6"
[dependencies.futures-util]
version = "0.3"
[dependencies.iceberg]
version = "0.8"
features = [
"storage-fs",
"storage-s3",
]
[dependencies.iceberg-catalog-rest]
version = "0.8"
[dependencies.mysql_async]
version = "0.36"
features = ["binlog"]
[dependencies.nix]
version = "0.31.2"
features = ["signal"]
[dependencies.ordered-float]
version = "5.1.0"
features = ["serde"]
[dependencies.parquet]
version = "57"
features = ["arrow"]
default-features = false
[dependencies.postgres-protocol]
version = "0.6"
[dependencies.rdkafka]
version = "0.39.0"
features = [
"cmake-build",
"tokio",
]
[dependencies.reqwest]
version = "0.13.2"
features = [
"json",
"rustls",
]
default-features = false
[dependencies.rusqlite]
version = "0.38.0"
features = ["bundled"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-postgres]
version = "0.7"
features = ["with-serde_json-1"]
[dependencies.tokio-util]
version = "0.7"
features = ["codec"]
[dependencies.tower-http]
version = "0.6"
features = [
"cors",
"trace",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.testcontainers]
version = "0.27.1"
[dev-dependencies.testcontainers-modules]
version = "0.15.0"
features = [
"postgres",
"mysql",
"kafka",
]
[dev-dependencies.tower]
version = "0.5"
[lints.clippy]
approx_constant = "allow"