[package] name = "pg-migrator" version = "0.2.1" edition = "2021" description = "Macro free Postgres migration tool for Rust Postgres and Tokio Postgres" documentation = "https://docs.rs/pg-migrator" homepage = "https://github.com/faveroferreira/pg-migrator" repository = "https://github.com/faveroferreira/pg-migrator" readme = "README.md" authors = ["Guilherme Favero Ferreira "] keywords = ["database", "sql", "migrations"] categories = ["database"] license = "MIT" [dependencies] tokio-postgres = { version = "0.7", default-features = false, features = ["with-chrono-0_4"], optional = true } postgres = { version = "0.19", default-features = false, features = ["with-chrono-0_4"], optional = true } thiserror = "1.0" regex = "1.9" chrono = "0.4" [features] tokio-postgres = ["dep:tokio-postgres"] postgres = ["dep:postgres"]