summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
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]