summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-09-12 00:34:17 +0800
committer魏曹先生 <1992414357@qq.com>2025-09-12 00:34:17 +0800
commitbb5b15b5abba1caf0fa8d8861c118cd73edf76d0 (patch)
treef971fdc187441037949345f41301d85e2ec65602 /Cargo.toml
parent75b747a2569ad94381f9dd0b26780c3759d9f637 (diff)
Add Crate `cfg_file`
.../utils/cfg_file .../cfg_file/cfg_file_derive .../cfg_file/cfg_file_example
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml43
1 files changed, 43 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..4ee5879
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,43 @@
+[package]
+name = "just_enough_vcs"
+version = "0.1.0"
+edition = "2024"
+
+license-file = "LICENSE-MIT.md"
+
+authors = [ "Weicao-CatilGrass (GitHub)" ]
+
+[workspace]
+members = [
+
+ # Utility
+
+ ## Config File
+ "crates/utils/cfg_file",
+ "crates/utils/cfg_file/cfg_file_derive",
+ "crates/utils/cfg_file/cfg_file_example"
+]
+
+[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]