-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
70 lines (64 loc) · 1.92 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "midas"
version = "0.7.6"
authors = ["Edward Fitz Abucay <gh:@ffimnsr>"]
edition = "2021"
readme = "README.md"
description = "Do painless migration 🦀"
categories = ["command-line-utilities", "development-tools"]
homepage = "https://github.com/ffimnsr/midas"
repository = "https://github.com/ffimnsr/midas"
license = "MIT OR Apache-2.0"
keywords = ["sql", "database", "command-line", "migrate", "cli"]
exclude = [".gitignore"]
default-run = "midas"
[lib]
name = "midas_core"
path = "src/lib.rs"
[[bin]]
name = "midas"
path = "src/midas/bin/main.rs"
[[bin]]
name = "cargo-migrate"
path = "src/midas/bin/migrate_main.rs"
[dependencies]
clap = { version = "4.5", features = ["env", "string"] }
postgres = "0.19"
mysql = "25.0"
rusqlite = { version = "0.32", features = ["bundled"] }
regex = "1.10"
dotenv = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.2", features = ["tracing-log"] }
tracing-attributes = "0.1"
tracing-futures = "0.2"
log = "0.4"
url = "2.5"
indoc = "2"
openssl = { version = "0.10", features = ["vendored"] }
anyhow = "1.0.93"
indicatif = "0.17.9"
serde = { version = "1.0.215", features = ["derive"] }
rand = "0.8.5"
console = "0.15.10"
clap_complete = "4.5.41"
mk_ext_prettytable = { version = "0.11.0", default-features = false, features = ["win_crlf"] }
mk_ext_serde_yaml = { version = "0.10.0" }
[dev-dependencies]
assert_cmd = "2.0.16"
assert_fs = "1.1.2"
predicates = { version = "3.1.3", default-features = false, features = ["diff", "regex"] }
snapbox = "0.6.21"
trycmd = "0.15.8"
[package.metadata.deb]
name = "midas"
maintainer = "Edward Fitz Abucay gh:@ffimnsr"
section = "utility"
assets = [
["target/release/midas", "usr/bin/", "755"],
["target/release/cargo-migrate", "usr/bin/", "755"],
["COPYRIGHT", "usr/share/doc/midas/", "644"],
["LICENSE-MIT", "usr/share/doc/midas/", "644"],
["LICENSE-APACHE", "usr/share/doc/midas/", "644"],
["README.md", "usr/share/doc/midas/README", "644"],
]