[package]
edition = "2024"
rust-version = "1.92"
name = "fluxforge"
version = "0.5.0"
authors = ["Andreas Frackowiak <af@ins.de>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A database schema converter and migration engine for MySQL and PostgreSQL"
readme = "README.md"
keywords = [
"database",
"mysql",
"postgres",
"migration",
"schema",
]
categories = [
"database",
"command-line-utilities",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fluxef/FluxForge"
[features]
integration-tests = []
[lib]
name = "fluxforge"
path = "src/lib.rs"
[[bin]]
name = "fluxforge"
path = "src/main.rs"
[[test]]
name = "mysql_integration_test"
path = "tests/mysql_integration_test.rs"
[[test]]
name = "mysql_logic_tests"
path = "tests/mysql_logic_tests.rs"
[[test]]
name = "mysql_mysql_replication_test"
path = "tests/mysql_mysql_replication_test.rs"
[[test]]
name = "mysql_postgres_replication_test"
path = "tests/mysql_postgres_replication_test.rs"
[[test]]
name = "postgres_logic_tests"
path = "tests/postgres_logic_tests.rs"
[[test]]
name = "postgres_postgres_replication_test"
path = "tests/postgres_postgres_replication_test.rs"
[dependencies.async-stream]
version = "0.3.6"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.43"
features = ["serde"]
[dependencies.clap]
version = "4.5.59"
features = ["derive"]
[dependencies.futures]
version = "0.3.32"
[dependencies.indexmap]
version = "2.13.0"
features = ["serde"]
[dependencies.indicatif]
version = "0.18"
[dependencies.ipnetwork]
version = "0.20"
[dependencies.petgraph]
version = "0.8"
[dependencies.rust_decimal]
version = "1.40"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio-rustls",
"mysql",
"postgres",
"chrono",
"rust_decimal",
"uuid",
"ipnetwork",
]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.49"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.uuid]
version = "1.21"
features = [
"v4",
"serde",
]
[dev-dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"mysql",
"postgres",
]
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[lints.clippy]
dbg_macro = "deny"
panic = "deny"
similar_names = "allow"
todo = "deny"
unwrap_used = "warn"