diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-31 11:43:07 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-31 11:43:07 +0800 |
| commit | a1503fef9947732994d4fb866b90b665c846b547 (patch) | |
| tree | 1542c91bad27df973993a862dcf49ee472e976f9 /mingling/Cargo.toml | |
| parent | 5a56cfd5e5ee7cde191b4c4fb24c6d11638f75fa (diff) | |
Update mingling_core to version 0.1.2 and use local dependencies
- Replace registry dependencies with local path dependencies
- Bump mingling_core version from 0.1.1 to 0.1.2
- Add safety comments for unsafe downcast operations
Diffstat (limited to 'mingling/Cargo.toml')
| -rw-r--r-- | mingling/Cargo.toml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml index 8a56278..d51c58e 100644 --- a/mingling/Cargo.toml +++ b/mingling/Cargo.toml @@ -16,12 +16,16 @@ mingling = { path = ".", features = ["full"] } [features] default = ["mingling_core/default"] full = ["mingling_core/full", "general_renderer", "parser"] -general_renderer = ["mingling_core/general_renderer", "dep:serde", "mingling_macros/serde"] +general_renderer = [ + "mingling_core/general_renderer", + "dep:serde", + "mingling_macros/serde", +] parser = ["dep:size"] [dependencies] -mingling_core = { version = "0.1.1", default-features = false } -mingling_macros = { version = "0.1.1", default-features = false } +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 } |
