reshape/Cargo.toml

22 lines
725 B
TOML
Raw Normal View History

2021-10-19 17:32:37 +03:00
[package]
name = "reshape"
2022-01-17 01:00:46 +03:00
version = "0.3.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"]
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-01-03 02:05:54 +03:00
clap = { version = "3.0.0", features = ["derive"] }
2021-10-19 17:32:37 +03:00
toml = "0.5"
version = "3.0.0"
colored = "2"