summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-09-21 12:37:04 +0800
committer魏曹先生 <1992414357@qq.com>2025-09-21 12:37:04 +0800
commit24c2c8cad43c755cf668ea92a08c0be7fb3b819d (patch)
tree790c8c9bcc67661748b6a58f471d8cce11efaa86 /Cargo.toml
parent7e7c9522a77625569d4a036323814ba5367ebc28 (diff)
First
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml47
1 files changed, 47 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..0adc8f5
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,47 @@
+[package]
+name = "just_enough_vcs_cli"
+edition = "2024"
+
+[dependencies.just_enough_vcs]
+git = "https://github.com/JustEnoughVCS/VersionControl"
+features = ["all"]
+
+[workspace]
+members = ["crates/cli_publisher"]
+
+[workspace.package]
+version = "0.1.0"
+
+[profile.dev]
+opt-level = 0
+debug = true
+split-debuginfo = "unpacked"
+codegen-units = 16
+incremental = true
+lto = false
+panic = "unwind"
+
+[profile.release]
+opt-level = 3
+debug = false
+split-debuginfo = "off"
+codegen-units = 1
+incremental = false
+lto = "fat"
+panic = "abort"
+strip = "symbols"
+
+[dependencies]
+
+# Command Line
+clap = "4.5"
+
+# Logging
+log = "0.4"
+env_logger = "0.11"
+
+# Async
+tokio = { version = "1", features = ["full"] }
+
+# Color
+colored = "2.0"