summaryrefslogtreecommitdiff
path: root/utils/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-01-27 06:02:59 +0800
committer魏曹先生 <1992414357@qq.com>2026-01-27 06:02:59 +0800
commit4eef9ce364bb660421a96052a3fb126a33b22c63 (patch)
treea36947411d83205dc743881cd2a30d8c907d4b57 /utils/Cargo.toml
parent243d521fd19af169910506529e737a797e9bc583 (diff)
Extract CLI utilities into a separate crate
Diffstat (limited to 'utils/Cargo.toml')
-rw-r--r--utils/Cargo.toml25
1 files changed, 25 insertions, 0 deletions
diff --git a/utils/Cargo.toml b/utils/Cargo.toml
new file mode 100644
index 0000000..b4df110
--- /dev/null
+++ b/utils/Cargo.toml
@@ -0,0 +1,25 @@
+[package]
+name = "cli_utils"
+edition = "2024"
+version.workspace = true
+
+[dependencies]
+# Just Enough VCS
+just_enough_vcs = { path = "../../VersionControl", features = ["all"] }
+
+# Display
+colored = "3.0"
+strip-ansi-escapes = "0.2.1"
+
+# Async
+tokio = { version = "1", features = ["full"] }
+
+# Logging
+log = "0.4"
+env_logger = "0.11"
+
+# File & Directory
+dirs = "6.0.0"
+
+# Time
+chrono = "0.4"