[package] name = "pg_migrate" version = "0.1.2" authors = ["Mikhail Antonov "] edition = "2021" description = "Database migration tool for PostgreSQL" license = "MIT" repository = "https://github.com/allelementary/pg-migrate" readme = "README.md" keywords = ["postgresql", "migration"] categories = ["database"] exclude = ["migrations/**"] [dependencies] clap = { version = "4.5", features = ["derive"] } postgres = { version = "0.19" } serde = { version = "1.0", features = ["derive"] } dotenv = "0.15" chrono = "0.4" uuid = { version = "1", features = ["v4"] } gag = "1.0.0" [[bin]] name = "pg_migrate_cli" path = "src/bin/pg_migrate_cli.rs"