From 39f4f34cfdf940e1c74184edb3387ef8900ba4b4 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Tue, 31 Mar 2026 08:54:29 +0800 Subject: Update workspace dependencies and feature structure - Bump mingling and mingling_macros to version 0.1.2 - Move macros from mingling_core to mingling crate - Remove unused transitive dependencies from Cargo.lock - Simplify tokio features in mingling_core - Adjust feature dependencies between crates --- mingling_core/Cargo.toml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'mingling_core/Cargo.toml') diff --git a/mingling_core/Cargo.toml b/mingling_core/Cargo.toml index d60c36e..c642c70 100644 --- a/mingling_core/Cargo.toml +++ b/mingling_core/Cargo.toml @@ -7,14 +7,12 @@ 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"] +default = [] +full = ["general_renderer"] +general_renderer = ["dep:serde"] [dependencies] -mingling_macros = { version = "0.1.1", optional = true } just_fmt = "0.1.2" serde = { version = "1.0", features = ["derive"], optional = true } thiserror = "2" -tokio = { version = "1", features = ["full"] } +tokio = { version = "1", features = ["io-std", "io-util"] } -- cgit