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
|
[package]
name = "just_enough_vcs_cli"
edition = "2024"
build = "build.rs"
authors = ["JustEnoughVCS Team"]
homepage = "https://github.com/JustEnoughVCS/CommandLine/"
[lib]
name = "jvcli"
crate-type = ["cdylib", "rlib"]
[workspace]
members = [
"gen",
"utils/",
"tools/build_helper",
"macros/cmd_system_macros",
"macros/helpdoc_system_macros",
"macros/render_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]
jv_cli_gen = { path = "gen" }
tokio = { version = "1", features = ["rt", "rt-multi-thread"] }
[workspace.dependencies]
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full", "extra-traits"] }
just_fmt = "0.1.2"
crossterm = "0.29"
colored = "3.1"
log = "0.4"
env_logger = "0.11"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
[dependencies]
cli_utils = { path = "utils" }
just_enough_vcs = { path = "../VersionControl", features = ["all"] }
cmd_system_macros = { path = "macros/cmd_system_macros" }
helpdoc_system_macros = { path = "macros/helpdoc_system_macros" }
render_system_macros = { path = "macros/render_system_macros" }
crossterm.workspace = true
env_logger.workspace = true
just_fmt.workspace = true
log.workspace = true
serde.workspace = true
thiserror.workspace = true
atty = "0.2"
chrono = "0.4"
clap = { version = "4.5", features = ["derive"] }
colored.workspace = true
just_progress = "0.1.1"
ron = "0.11.0"
rust-i18n = "3"
serde_json = "1"
serde_yaml = "0.9"
strip_ansi_escapes = { version = "0.2", package = "strip-ansi-escapes" }
tokio = { version = "1", features = ["full"] }
toml = "0.9"
walkdir = "2.5.0"
|