summaryrefslogtreecommitdiff
path: root/mingling/Cargo.toml
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-31 08:54:29 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-31 08:54:29 +0800
commit39f4f34cfdf940e1c74184edb3387ef8900ba4b4 (patch)
tree844c865be02b23d5681d7f1ed301c36614d612d7 /mingling/Cargo.toml
parent4421fb2794f2af292f8781e7d12ae002a3f10a9b (diff)
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
Diffstat (limited to 'mingling/Cargo.toml')
-rw-r--r--mingling/Cargo.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
index c9f0116..3f5d9dc 100644
--- a/mingling/Cargo.toml
+++ b/mingling/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mingling"
-version = "0.1.1"
+version = "0.1.2"
edition = "2024"
authors = ["Weicao-CatilGrass"]
license = "MIT OR Apache-2.0"
@@ -15,13 +15,13 @@ mingling = { path = ".", features = ["full"] }
[features]
default = ["mingling_core/default"]
-full = ["mingling_core/full", "general_renderer", "macros", "parser"]
-general_renderer = ["mingling_core/general_renderer", "dep:serde"]
-macros = ["mingling_core/macros"]
+full = ["mingling_core/full", "general_renderer", "parser"]
+general_renderer = ["mingling_core/general_renderer", "dep:serde", "mingling_macros/serde"]
parser = ["dep:size"]
[dependencies]
mingling_core = { path = "../mingling_core", default-features = false }
+mingling_macros = { path = "../mingling_macros", default-features = false }
serde = { version = "1.0", features = ["derive"], optional = true }
size = { version = "0.5", optional = true }