-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 896 Bytes
/
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
[package]
name = "tusker"
version = "0.1.0"
edition = "2021"
description = "PostgreSQL specific schema migration tool"
rust-version = "1.85"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.0.1", features = ["derive"] }
config = { version = "0.15", default-features = false, features = ["toml"] }
glob = "0.3.1"
serde = { version = "1.0.145", features = ["derive"] }
serde_json = "1"
sha2 = "0.10.8"
tokio = { version = "1.34.0", features = ["fs", "macros", "rt-multi-thread"] }
tokio-postgres = "0.7.12"
toml = "0.8.8"
tusker-migration = { version = "0.1.0", path = "tusker-migration" }
tusker-query-models = { version = "0.1.0", path = "tusker-query-models" }
tusker-schema = { version = "0.1.0", path = "tusker-schema" }
uzers = "0.12.1"
[workspace]
members = ["tusker-*", "examples/*"]