diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-31 08:54:29 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-31 08:54:29 +0800 |
| commit | 39f4f34cfdf940e1c74184edb3387ef8900ba4b4 (patch) | |
| tree | 844c865be02b23d5681d7f1ed301c36614d612d7 /mingling_core/Cargo.toml | |
| parent | 4421fb2794f2af292f8781e7d12ae002a3f10a9b (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_core/Cargo.toml')
| -rw-r--r-- | mingling_core/Cargo.toml | 10 |
1 files changed, 4 insertions, 6 deletions
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"] } |
