summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-04 21:26:04 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-04 21:35:09 +0800
commit22926ce29e3f8e040ec349401aeb6a77f32eae72 (patch)
tree678753ec49a61fb9d3e2d8e869393dec90ea7ef4 /Cargo.toml
Initialize Butchunker project structure and policy system
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml41
1 files changed, 41 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..cfab2b8
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,41 @@
+[package]
+name = "butchunker"
+version = "0.1.0"
+edition = "2024"
+default-run = "butckrepo-guide"
+
+[dependencies]
+butck_policies = { path = "policy/_policies" }
+
+# Code generate
+just_template = "0.1.3"
+
+# Memory mapping
+memmap2 = "0.9"
+
+# Error
+thiserror = "2"
+
+# Syntax
+just_fmt = "0.1.2"
+syn = { version = "2", features = ["full"] }
+
+# Async
+futures = "0.3"
+tokio = { version = "1", features = ["full"] }
+
+# Display
+colored = "3"
+just_progress = "0.1.3"
+
+# Serialize & Config
+toml = "1"
+
+# Logging
+log = "0.4"
+env_logger = "0.11"
+
+# Hashing
+blake3 = "1.8"
+sha2 = "0.10"
+hex = "0.4"