From 7ce68cd11516bd7cf037ecea99a92aee7c31b2c3 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 28 Mar 2026 00:47:46 +0800 Subject: Add initial Mingling framework codebase --- mingling/Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 mingling/Cargo.toml (limited to 'mingling/Cargo.toml') diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml new file mode 100644 index 0000000..5cd681a --- /dev/null +++ b/mingling/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "mingling" +version = "0.1.0" +edition = "2024" +authors = ["Weicao-CatilGrass"] +license-file = "LICENSE-MIT" + +[features] +default = ["macros"] +macros = ["mingling_macros"] +serde_renderer = ["dep:serde", "mingling_macros/serde"] + +[dependencies] +mingling_macros = { path = "../mingling_macros", optional = true } +just_fmt = "0.1.2" +serde = { version = "1.0", features = ["derive"], optional = true } +thiserror = "2" -- cgit