diff options
Diffstat (limited to 'utils/Cargo.toml')
| -rw-r--r-- | utils/Cargo.toml | 25 |
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" |
