[package]
name = "salmo"
version = "0.2.3"
edition = "2021"
authors = ["Max Polun <maxpolun@gmail.com>"]
license = "ISC"
description = "A Database migration tool"
readme = "README.md"
homepage = "https://gitlab.com/maxpolun/salmo"
repository = "https://gitlab.com/maxpolun/salmo"
keywords = ["cli", "postgres", "database", "migration"]
categories = ["command-line-utilities", "database", "development-tools"]
[badges]
gitlab = { repository = "maxpolun/salmo", branch = "main" }
[lib]
name="libsalmo"
[[bin]]
name="salmo"
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.3.10", features = ["derive", "unicode", "env"] }
hex = "0.4.3"
log = "0.4.19"
postgres = { version = "0.19.5", features = ["with-time-0_3"], optional = true }
semver = "1.0.17"
serde = { version = "1.0.166", features = ["derive"] }
sha2 = "0.10.7"
simplelog = "0.12.1"
time = "0.3.22"
toml_edit = { version = "0.19.11", features = ["serde"] }
whoami = "1.4.1"
[dev-dependencies]
rand = "0.8.5"
tempfile = "3.6.0"
url = "2.4.0"
[features]
default = ["db_postgresql"]
db_postgresql = ["postgres"]