-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
56 lines (51 loc) · 1.43 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "renovate"
version = "0.2.23"
edition = "2021"
license = "MIT"
documentation = "https://docs.rs/renovate"
repository = "https://github.com/tyrchen/renovate"
homepage = "https://github.com/tyrchen/renovate"
description = """
A new way to handle Postgres schema migration.
"""
readme = "README.md"
categories = ["database"]
keywords = ["database", "postgres", "migration"]
[lib]
name = "renovate"
path = "src/lib.rs"
[[bin]]
name = "renovate"
path = "src/main.rs"
[features]
default = ["cli"]
cli = ["clap-utils"]
cli-test = []
[dependencies]
anyhow = "1.0.68"
async-process = "1.6.0"
async-trait = "0.1.60"
atty = "0.2.14"
clap-utils = { version = "0.3.0", features = ["highlight"], optional = true }
console = "0.15.4"
derivative = "2.2.0"
git2 = { version = "0.15.0", default-features = false }
glob = "0.3.0"
indexmap = "1.9.2"
itertools = "0.10.5"
nom = "7.1.2"
pg_query = { version = "0.7.0", git = "https://github.com/pganalyze/pg_query.rs" }
serde = { version = "1.0.152", features = ["derive"] }
serde_yaml = "0.9.16"
similar = { version = "2.2.1", features = ["inline"] }
sqlformat = "0.2.0"
sqlx = { version = "0.6.2", features = ["postgres", "runtime-tokio-rustls"] }
tokio = { version = "1.23.1", features = ["fs", "rt", "macros", "rt-multi-thread", "tracing"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.16"
url = "2.3.1"
uuid = { version = "1.2.2", features = ["v4"] }
[dev-dependencies]
tempfile = "3.3.0"
trycmd = "0.14.10"