summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 6082cd6f39eac9e0e5ada0987b848dc5bd7558be (plain)
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
[package]
name = "just_enough_vcs_cli"
edition = "2024"
build = "build.rs"

[workspace]
members = ["crates/build_helper"]

[workspace.package]
version = "0.1.0-dev"

[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
codegen-units = 16
incremental = true
lto = false
panic = "unwind"

[profile.release]
opt-level = "z"
debug = false
split-defoinfo = "off"
codegen-units = 1
incremental = false
lto = "thin"
panic = "abort"
strip = true

[build-dependencies]
chrono = "0.4"
toml = "0.9"

[dependencies]
# Just Enough VCS
just_enough_vcs = { path = "../VersionControl", features = ["all"] }

# Command Line
clap = { version = "4.5", features = ["derive"] }

# Time
chrono = "0.4"

# Logging
log = "0.4"
env_logger = "0.11"

# Async
tokio = { version = "1", features = ["full"] }

# Display
colored = "3.0"
strip-ansi-escapes = "0.2.1"

# i18n
rust-i18n = "3"

# Regex
regex = "1.12.1"

# File & Directory
walkdir = "2.5.0"
dirs = "6.0.0"