-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
45 lines (37 loc) · 1.1 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
[package]
name = "crude"
version = "0.0.1"
authors = ["Pavan Kumar Sunkara <[email protected]>"]
description = "Migration toolkit for databases"
homepage = "https://github.com/termapps/crude"
repository = "https://github.com/termapps/crude"
edition = "2021"
rust-version = "1.75.0"
categories = ["command-line-utilities"]
license = "MIT"
readme = "README.md"
[dependencies]
anstream = "0.6.4"
clap = { version = "4.4.7", features = ["derive", "wrap_help"] }
clap-verbosity-flag = "2.1.0"
colorchoice-clap = "1.0.3"
owo-colors = "3.5.0"
proc-exit = "2.0.1"
thiserror = "1.0.39"
tracing = "0.1.37"
tracing-log = { version = "0.1.3", default-features = false, features = ["log-tracer", "std"] }
tracing-subscriber = "0.3.16"
[[bin]]
name = "crude"
path = "src/main.rs"
[profile.release]
codegen-units = 1
lto = "thin"
strip = true
[profile.release-opt-size]
inherits = "release"
lto = true
opt-level = "z"
panic = "abort"
[workspace.metadata.workspaces]
no_individual_tags = true