From 596e5e2440df2d32f1cf3e052dc633e774edf6ee Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 29 Mar 2026 21:48:23 +0800 Subject: Rename mingling to mingling_core and update dependencies --- mingling_core/Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 mingling_core/Cargo.toml (limited to 'mingling_core/Cargo.toml') diff --git a/mingling_core/Cargo.toml b/mingling_core/Cargo.toml new file mode 100644 index 0000000..afeed3b --- /dev/null +++ b/mingling_core/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "mingling_core" +version = "0.1.0" +edition = "2024" +license = "MIT OR Apache-2.0" +description = "Core of the mingling library" +repository = "https://github.com/catilgrass/mingling" + +[features] +full = ["macros", "general_renderer"] +default = ["macros"] +macros = ["mingling_macros"] +general_renderer = ["dep:serde", "mingling_macros/serde"] + +[dependencies] +mingling_macros = { version = "0.1.0", optional = true } +just_fmt = "0.1.2" +serde = { version = "1.0", features = ["derive"], optional = true } +thiserror = "2" +tokio = { version = "1", features = ["full"] } -- cgit