From bb5b15b5abba1caf0fa8d8861c118cd73edf76d0 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Fri, 12 Sep 2025 00:34:17 +0800 Subject: Add Crate `cfg_file` .../utils/cfg_file .../cfg_file/cfg_file_derive .../cfg_file/cfg_file_example --- Cargo.toml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') 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] -- cgit