reshape/Cargo.toml

26 lines
801 B
TOML
Raw Normal View History

2021-10-19 17:32:37 +03:00
[package]
name = "reshape"
2022-08-03 17:04:23 +03:00
version = "0.6.1"
2022-01-01 19:35:16 +03:00
description = "An easy-to-use, zero-downtime schema migration tool for Postgres"
homepage = "https://github.com/fabianlindfors/reshape"
documentation = "https://github.com/fabianlindfors/reshape"
repository = "https://github.com/fabianlindfors/reshape"
license = "MIT"
keywords = ["postgres", "migrations"]
2021-10-19 17:32:37 +03:00
edition = "2021"
2022-01-01 19:35:16 +03:00
authors = ["Fabian Lindfors"]
2022-02-03 16:25:06 +03:00
rust-version = "1.58"
2021-10-19 17:32:37 +03:00
[dependencies]
postgres = { version = "0.19.2", features = ["with-serde_json-1"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
typetag = "0.1.7"
anyhow = { version = "1.0.44", features = ["backtrace"] }
2022-04-20 00:24:05 +03:00
clap = { version = "3.1.9", features = ["derive"] }
2021-10-19 17:32:37 +03:00
toml = "0.5"
version = "3.0.0"
colored = "2"
rand = "0.8"
dotenv = "0.15.0"
lexical-sort = "0.3.1"