[dependencies.async-trait]
version = "0.1.88"
[dependencies.bytes]
version = "1.10.1"
[dependencies.chrono]
features = ["serde"]
version = "0.4.41"
[dependencies.http-body-util]
optional = true
version = "0.1.3"
[dependencies.hyper]
features = ["full"]
optional = true
version = "1.7"
[dependencies.hyper-util]
features = ["full"]
optional = true
version = "0.1.16"
[dependencies.lazy_static]
version = "1.5"
[dependencies.libc]
version = "0.2.174"
[dependencies.libpq-sys]
version = "0.8"
[dependencies.prometheus]
features = ["process"]
optional = true
version = "0.14.0"
[dependencies.serde]
features = ["derive"]
version = "1.0.219"
[dependencies.serde_json]
version = "1.0.142"
[dependencies.sqlx]
features = ["runtime-tokio-rustls", "mysql", "sqlite", "chrono", "uuid"]
optional = true
version = "0.8.6"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tiberius]
features = ["tds73", "sql-browser-tokio", "bigdecimal", "rust_decimal", "time", "chrono"]
optional = true
version = "0.12"
[dependencies.tokio]
features = ["full"]
version = "1.47.1"
[dependencies.tokio-util]
features = ["compat"]
version = "0.7.16"
[dependencies.tracing]
version = "0.1.41"
[features]
default = ["mysql", "sqlserver", "sqlite"]
metrics = ["hyper", "hyper-util", "http-body-util", "prometheus"]
mysql = ["sqlx/mysql"]
sqlite = ["sqlx/sqlite"]
sqlserver = ["tiberius"]
[lib]
name = "pg2any_lib"
path = "src/lib.rs"
[package]
authors = ["danielshih <dog830228@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["database", "asynchronous"]
description = "PostgreSQL to Any database library with Change Data Capture (CDC) and logical replication support"
documentation = "https://docs.rs/pg2any_lib"
edition = "2021"
homepage = "https://github.com/isdaniel/pg2any"
keywords = ["postgresql", "cdc", "replication", "database", "streaming"]
license = "Apache-2.0"
name = "pg2any_lib"
readme = "README.md"
repository = "https://github.com/isdaniel/pg2any"
version = "0.4.0"
[[test]]
name = "destination_integration_tests"
path = "tests/destination_integration_tests.rs"
[[test]]
name = "event_type_refactor_tests"
path = "tests/event_type_refactor_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "metrics_logical_tests"
path = "tests/metrics_logical_tests.rs"
[[test]]
name = "mysql_edge_cases_tests"
path = "tests/mysql_edge_cases_tests.rs"
[[test]]
name = "mysql_error_handling_simple_tests"
path = "tests/mysql_error_handling_simple_tests.rs"
[[test]]
name = "mysql_where_clause_fix_tests"
path = "tests/mysql_where_clause_fix_tests.rs"
[[test]]
name = "replica_identity_tests"
path = "tests/replica_identity_tests.rs"
[[test]]
name = "sqlite_comprehensive_tests"
path = "tests/sqlite_comprehensive_tests.rs"
[[test]]
name = "sqlite_destination_tests"
path = "tests/sqlite_destination_tests.rs"
[[test]]
name = "streaming_transaction_tests"
path = "tests/streaming_transaction_tests.rs"
[[test]]
name = "where_clause_fix_tests"
path = "tests/where_clause_fix_tests.rs"