2021-10-19 17:32:37 +03:00
|
|
|
[package]
|
|
|
|
name = "reshape"
|
2024-01-22 01:14:29 +03:00
|
|
|
version = "0.7.0"
|
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"]
|
2024-01-22 01:59:34 +03:00
|
|
|
rust-version = "1.70"
|
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"
|
2022-01-04 00:03:10 +03:00
|
|
|
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"
|
2022-01-25 18:27:33 +03:00
|
|
|
colored = "2"
|
2022-02-04 01:57:02 +03:00
|
|
|
rand = "0.8"
|
2022-07-26 17:00:08 +03:00
|
|
|
dotenv = "0.15.0"
|
2024-01-22 01:14:29 +03:00
|
|
|
lexical-sort = "0.3.1"
|