-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (42 loc) · 1.21 KB
/
Cargo.toml
File metadata and controls
44 lines (42 loc) · 1.21 KB
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
[package]
name = "qop"
version = "0.0.0"
authors = ["cchexcode <alexanderh.weber@outlook.com>"]
edition = "2024"
license = "MIT"
description = "A simple and powerful database migration tool."
homepage = "https://github.com/cchexcode/qop"
repository = "https://github.com/cchexcode/qop"
keywords = ["sql", "postgres", "sqlite", "cli", "database"]
categories = ["command-line-utilities", "database"]
readme = "docs/README.md"
[features]
default = ["sub+sqlite"]
"sub+postgres" = ["sqlx/postgres"]
"sub+sqlite" = ["sqlx/sqlite"]
[dependencies]
tokio = { version = "1.47.1", features = [
"rt",
"rt-multi-thread",
"macros",
"process",
"io-util",
"time",
"sync",
] }
async-trait = "0.1.89"
clap = "4.5.46"
clap_complete = "4.5.57"
clap_mangen = "0.2.29"
clap-markdown = "0.1.5"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.143"
anyhow = "1.0.99"
chrono = { version = "0.4.41", features = ["serde"] }
toml = "0.9.5"
sqlx = { version = "0.8.6", default-features = false, features = ["tls-rustls", "runtime-tokio", "chrono"]}
comfy-table = "7.2.0"
path-clean = "1.0.1"
semver = { version = "1.0", features = ["serde"] }
uuid = { version = "1.18", features = ["v7", "serde"] }
whoami = "1.6"