aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-05-02 00:50:40 +0800
committer魏曹先生 <1992414357@qq.com>2026-05-02 00:50:40 +0800
commit1140b9cd48c19d02392ab7df415a3d35c3eaf1bc (patch)
tree436832ec3f15c8baaa86a1b895e0238c756150ac
parent604fb36f4251e494b3486009145401a3c1f7b326 (diff)
Remove `full` feature from all crates
-rw-r--r--CHANGELOG.md2
-rw-r--r--mingling/Cargo.toml1
-rw-r--r--mingling_core/Cargo.toml2
-rw-r--r--mingling_macros/Cargo.toml2
4 files changed, 2 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6bb3772..6d2e761 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -182,6 +182,8 @@ let (name, age) = Picker::new(prev.inner)
8. **\[macros\]** Removed `#[derive(Debug)]` from generated pack types to remove unnecessary trait bounds.
+9. **\[macros\]** **\[core\]** **\[mingling\]** Removed the `full` feature from all crates.
+
---
### Release 0.1.6 **\[YANKED\]**
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml
index 12ea9cf..25f310a 100644
--- a/mingling/Cargo.toml
+++ b/mingling/Cargo.toml
@@ -23,7 +23,6 @@ async = ["mingling_core/async", "mingling_macros/async"]
default = ["mingling_core/default"]
clap = ["mingling_core/clap", "mingling_macros/clap"]
-full = ["mingling_core/full", "mingling_macros/full", "comp", "parser"]
general_renderer = [
"mingling_core/general_renderer",
"dep:serde",
diff --git a/mingling_core/Cargo.toml b/mingling_core/Cargo.toml
index 6392ce0..e2296a4 100644
--- a/mingling_core/Cargo.toml
+++ b/mingling_core/Cargo.toml
@@ -11,8 +11,6 @@ nightly = []
default = []
async = []
-full = ["comp", "general_renderer"]
-
clap = []
comp = ["dep:just_template"]
debug = ["dep:log", "dep:env_logger"]
diff --git a/mingling_macros/Cargo.toml b/mingling_macros/Cargo.toml
index 038ffd3..a8a765d 100644
--- a/mingling_macros/Cargo.toml
+++ b/mingling_macros/Cargo.toml
@@ -14,8 +14,6 @@ nightly = []
default = []
async = []
-full = ["comp", "general_renderer"]
-
clap = []
comp = []
general_renderer = []