From 4eef9ce364bb660421a96052a3fb126a33b22c63 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 27 Jan 2026 06:02:59 +0800 Subject: Extract CLI utilities into a separate crate --- utils/Cargo.toml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 utils/Cargo.toml (limited to 'utils/Cargo.toml') 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" -- cgit