blob: 340b41eb318c507f8a91d205686c9b4ec0b603e6 (
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
[package]
name = "just_enough_vcs_cli"
edition = "2024"
build = "build.rs"
authors = ["JustEnoughVCS Team"]
homepage = "https://github.com/JustEnoughVCS/CommandLine/"
[workspace]
members = [
"utils/",
"tools/build_helper",
"macros/render_system_macros",
"macros/cmd_system_macros"
]
[workspace.package]
version = "0.1.0-dev"
[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
codegen-units = 64
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]
# Just Enough VCS String Formatter
string_proc = { path = "../VersionControl/utils/string_proc/" }
tokio = { version = "1", features = ["rt", "rt-multi-thread"] }
chrono = "0.4"
toml = "0.9"
regex = "1.12"
[dependencies]
# Just Enough VCS
just_enough_vcs = { path = "../VersionControl", features = ["all"] }
# RenderSystem Macros
render_system_macros = { path = "macros/render_system_macros" }
# CommandSystem Macros
cmd_system_macros = { path = "macros/cmd_system_macros" }
# CommandLine Utilities
cli_utils = { path = "utils" }
# Error
thiserror = "2.0.17"
# Serialize
# What the heck, why does this crate use kebab-case instead of snake_case ????
erased_serde = { package = "erased-serde", version = "0.4" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Command Line
clap = { version = "4.5", features = ["derive"] }
# Time
chrono = "0.4"
# Logging
log = "0.4"
# Async
tokio = { version = "1", features = ["full"] }
# Display
colored = "3.0"
# Terminal
crossterm = "0.27"
# i18n
rust-i18n = "3"
# File & Directory
walkdir = "2.5.0"
|