[package]
edition = "2021"
rust-version = "1.70"
name = "reshape"
version = "0.8.1"
authors = ["Fabian Lindfors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An easy-to-use, zero-downtime schema migration tool for Postgres"
homepage = "https://github.com/fabianlindfors/reshape"
documentation = "https://github.com/fabianlindfors/reshape"
readme = "README.md"
keywords = [
"postgres",
"migrations",
]
license = "MIT"
repository = "https://github.com/fabianlindfors/reshape"
[lib]
name = "reshape"
path = "src/lib.rs"
[[bin]]
name = "reshape"
path = "src/main.rs"
[[test]]
name = "add_column"
path = "tests/add_column.rs"
[[test]]
name = "add_foreign_key"
path = "tests/add_foreign_key.rs"
[[test]]
name = "add_index"
path = "tests/add_index.rs"
[[test]]
name = "alter_column"
path = "tests/alter_column.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "complex"
path = "tests/complex.rs"
[[test]]
name = "create_enum"
path = "tests/create_enum.rs"
[[test]]
name = "create_table"
path = "tests/create_table.rs"
[[test]]
name = "custom"
path = "tests/custom.rs"
[[test]]
name = "failure"
path = "tests/failure.rs"
[[test]]
name = "remove_column"
path = "tests/remove_column.rs"
[[test]]
name = "remove_enum"
path = "tests/remove_enum.rs"
[[test]]
name = "remove_foreign_key"
path = "tests/remove_foreign_key.rs"
[[test]]
name = "remove_index"
path = "tests/remove_index.rs"
[[test]]
name = "remove_table"
path = "tests/remove_table.rs"
[[test]]
name = "rename_table"
path = "tests/rename_table.rs"
[dependencies.anyhow]
version = "1.0"
features = ["backtrace"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.colored]
version = "3"
[dependencies.dotenv]
version = "0.15.0"
[dependencies.lexical-sort]
version = "0.3.1"
[dependencies.pg_query]
version = "6"
[dependencies.postgres]
version = "0.19.12"
features = ["with-serde_json-1"]
[dependencies.rand]
version = "0.9"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.toml]
version = "0.8"
[dependencies.typetag]
version = "0.2"
[dependencies.version]
version = "3.0.0"