database-replicator 7.2.1

Universal database-to-PostgreSQL replication CLI. Supports PostgreSQL, SQLite, MongoDB, and MySQL.
[[bin]]
name = "database-replicator"
path = "src/main.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.base64]
version = "0.21"

[dependencies.bson]
version = "2.9"

[dependencies.chrono]
default-features = false
features = ["clock", "serde"]
version = "0.4"

[dependencies.clap]
features = ["derive", "env"]
version = "4.4"

[dependencies.dialoguer]
version = "0.11"

[dependencies.dirs]
version = "5.0"

[dependencies.futures]
version = "0.3"

[dependencies.home]
version = ">=0.5.4, <0.5.12"

[dependencies.indicatif]
version = "0.18"

[dependencies.inquire]
version = "0.7"

[dependencies.libc]
version = "0.2"

[dependencies.mongodb]
version = "3.4"

[dependencies.mysql_async]
version = "0.36"

[dependencies.native-tls]
version = "0.2"

[dependencies.postgres-native-tls]
version = "0.5"

[dependencies.rand]
version = "0.8"

[dependencies.reqwest]
default-features = false
features = ["json", "native-tls"]
version = "0.11"

[dependencies.rusqlite]
version = "0.30"

[dependencies.rust_decimal]
default-features = false
features = ["db-tokio-postgres", "serde", "std"]
version = "1.39"

[dependencies.serde]
features = ["derive"]
version = "1.0"

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.sqlite-watcher]
optional = true
version = "0.1.0"

[dependencies.tempfile]
version = "3.8"

[dependencies.tokio]
features = ["full"]
version = "1.35"

[dependencies.tokio-postgres]
features = ["with-serde_json-1", "with-chrono-0_4", "with-uuid-1"]
version = "0.7"

[dependencies.toml]
version = "0.8"

[dependencies.tonic]
features = ["transport"]
version = "0.11"

[dependencies.tower]
version = "0.4"

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
features = ["env-filter"]
version = "0.3"

[dependencies.url]
version = "2.5"

[dependencies.uuid]
features = ["v4"]
version = "1"

[dependencies.which]
version = "6.0"

[features]
default = ["sqlite-sync"]
sqlite-sync = ["sqlite-watcher"]

[lib]
name = "database_replicator"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "database"]
description = "Universal database-to-PostgreSQL replication CLI. Supports PostgreSQL, SQLite, MongoDB, and MySQL."
documentation = "https://github.com/serenorg/database-replicator#readme"
edition = "2021"
homepage = "https://github.com/serenorg/database-replicator"
keywords = ["postgresql", "replication", "database", "migration", "cdc"]
license = "Apache-2.0"
name = "database-replicator"
readme = "README.md"
repository = "https://github.com/serenorg/database-replicator"
version = "7.2.1"

[target."cfg(unix)".dependencies.daemonize]
version = "0.5"

[[test]]
doc = false
name = "fallback_test"
path = "tests/fallback_test.rs"

[[test]]
name = "integration_remote_test"
path = "tests/integration_remote_test.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
doc = false
name = "interactive_serendb_test"
path = "tests/interactive_serendb_test.rs"

[[test]]
name = "mysql_integration_test"
path = "tests/mysql_integration_test.rs"

[[test]]
name = "performance_test"
path = "tests/performance_test.rs"

[[test]]
name = "security_test"
path = "tests/security_test.rs"

[[test]]
name = "serendb_api_test"
path = "tests/serendb_api_test.rs"

[[test]]
name = "sqlite_integration_test"
path = "tests/sqlite_integration_test.rs"

[[test]]
doc = false
name = "state_test"
path = "tests/state_test.rs"

[[test]]
doc = false
name = "xmin_integration_test"
path = "tests/xmin_integration_test.rs"