[package]
edition = "2024"
rust-version = "1.95"
name = "pgevolve"
version = "0.4.4"
authors = ["Daniel Toone"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Postgres declarative schema management CLI — diff source SQL against a live database and generate reviewable migrations."
homepage = "https://github.com/saosebastiao/pgevolve"
documentation = "https://docs.rs/pgevolve"
readme = "README.md"
keywords = [
"postgres",
"postgresql",
"migration",
"schema",
"database",
]
categories = [
"database",
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/saosebastiao/pgevolve"
resolver = "2"
[lib]
name = "pgevolve"
path = "src/lib.rs"
[[bin]]
name = "pgevolve"
path = "src/main.rs"
[[test]]
name = "aggregate_e2e"
path = "tests/aggregate_e2e.rs"
[[test]]
name = "api_build_plan"
path = "tests/api_build_plan.rs"
[[test]]
name = "cast_e2e"
path = "tests/cast_e2e.rs"
[[test]]
name = "chaos_apply"
path = "tests/chaos_apply.rs"
[[test]]
name = "cli_e2e"
path = "tests/cli_e2e.rs"
[[test]]
name = "cluster_api"
path = "tests/cluster_api.rs"
[[test]]
name = "cluster_apply_e2e"
path = "tests/cluster_apply_e2e.rs"
[[test]]
name = "doctor_command"
path = "tests/doctor_command.rs"
[[test]]
name = "env_interp_integration"
path = "tests/env_interp_integration.rs"
[[test]]
name = "event_trigger_e2e"
path = "tests/event_trigger_e2e.rs"
[[test]]
name = "executor_smoke"
path = "tests/executor_smoke.rs"
[[test]]
name = "graph_command"
path = "tests/graph_command.rs"
[[test]]
name = "lint_format"
path = "tests/lint_format.rs"
[[test]]
name = "lint_waiver_e2e"
path = "tests/lint_waiver_e2e.rs"
[[test]]
name = "pg_property_tests"
path = "tests/pg_property_tests.rs"
[[test]]
name = "shadow_backend"
path = "tests/shadow_backend.rs"
[[test]]
name = "shadow_validate"
path = "tests/shadow_validate.rs"
[[test]]
name = "shadow_validate_flag"
path = "tests/shadow_validate_flag.rs"
[[test]]
name = "shadow_validate_views"
path = "tests/shadow_validate_views.rs"
[[test]]
name = "table_tablespace_e2e"
path = "tests/table_tablespace_e2e.rs"
[[test]]
name = "text_search_e2e"
path = "tests/text_search_e2e.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.hex]
version = "0.4"
[dependencies.pgevolve-core]
version = "0.4.4"
features = ["tokio-postgres-querier"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3"
[dependencies.testcontainers]
version = "0.27"
[dependencies.thiserror]
version = "2"
[dependencies.time]
version = "0.3"
features = [
"serde",
"formatting",
"parsing",
"macros",
]
[dependencies.tokio]
version = "1"
features = [
"macros",
"rt-multi-thread",
"sync",
"signal",
]
[dependencies.tokio-postgres]
version = "0.7"
features = [
"with-uuid-1",
"with-time-0_3",
]
[dependencies.toml]
version = "1"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
"v4",
]
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.proptest]
version = "1"
[lints.clippy]
const_is_empty = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
unnecessary_wraps = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_docs = "warn"
unsafe_code = "deny"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1