diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-30 22:47:07 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-30 22:47:07 +0800 |
| commit | fbe831d29310e050f156355ece670c5a89f9d269 (patch) | |
| tree | fa90297add21d225b4a5ba9edb77004165f2f3e5 | |
| parent | 9bbb5eb14aa54fea87d55c25e5117c6202776359 (diff) | |
chore: bump version to 0.2.1 and switch deps to pathnext
38 files changed, 114 insertions, 283 deletions
@@ -401,11 +401,11 @@ checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling", - "mingling_core 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "mingling_macros 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mingling_core", + "mingling_macros", "serde", "size", "tokio", @@ -413,7 +413,7 @@ dependencies = [ [[package]] name = "mingling-cli" -version = "0.2.0" +version = "0.2.1" dependencies = [ "chrono", "colored", @@ -427,31 +427,13 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -dependencies = [ - "env_logger", - "just_fmt", - "just_template", - "log", - "mingling_pathf 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ron", - "serde", - "serde_json", - "serde_yaml", - "toml", -] - -[[package]] -name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "env_logger", "just_fmt", "just_template", "log", - "mingling_pathf 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "mingling_pathf", "ron", "serde", "serde_json", @@ -461,19 +443,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -dependencies = [ - "just_fmt", - "proc-macro2", - "quote", - "syn", -] - -[[package]] -name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", @@ -483,18 +453,7 @@ dependencies = [ [[package]] name = "mingling_pathf" -version = "0.2.0" -dependencies = [ - "just_fmt", - "proc-macro2", - "syn", -] - -[[package]] -name = "mingling_pathf" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6991b5b4ec98b4a9eafcf1826a09810f9168cf0ab6f3945b07c7d1a23e805da2" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", @@ -17,9 +17,9 @@ exclude = [ ] [workspace.dependencies] -mingling_core = { version = "0.2.0", default-features = false } -mingling_macros = { version = "0.2.0", default-features = false } -mingling_pathf = { version = "0.2.0", default-features = false } +mingling_core = { path = "mingling_core", default-features = false } +mingling_macros = { path = "mingling_macros", default-features = false } +mingling_pathf = { path = "mingling_pathf", default-features = false } just_fmt = "0.1.2" just_template = "0.2.0" @@ -43,7 +43,7 @@ log = "0.4.33" env_logger = "0.11.11" [workspace.package] -version = "0.2.0" +version = "0.2.1" edition = "2024" license = "MIT OR Apache-2.0" repository = "https://github.com/mingling-rs/mingling" @@ -63,7 +63,7 @@ Add Mingling to your `Cargo.toml`: ```toml [dependencies.mingling] -version = "0.2.0" +version = "0.2.1" features = [] ``` diff --git a/docs/_zh_CN/pages/1-getting-started.md b/docs/_zh_CN/pages/1-getting-started.md index 03bb1be..0a872c2 100644 --- a/docs/_zh_CN/pages/1-getting-started.md +++ b/docs/_zh_CN/pages/1-getting-started.md @@ -13,7 +13,7 @@ cd my-cli ```toml [dependencies.mingling] -version = "0.2.0" +version = "0.2.1" features = [] ``` @@ -25,7 +25,7 @@ features = [] ```toml [dependencies.mingling] -version = "0.2.0" +version = "0.2.1" features = [ "parser", "comp", diff --git a/docs/pages/1-getting-started.md b/docs/pages/1-getting-started.md index c3527db..a701d7a 100644 --- a/docs/pages/1-getting-started.md +++ b/docs/pages/1-getting-started.md @@ -13,7 +13,7 @@ Add the following to `Cargo.toml`: ```toml [dependencies.mingling] -version = "0.2.0" +version = "0.2.1" features = [] ``` @@ -25,7 +25,7 @@ Some features **directly affect the entire lifecycle behavior**, so you need to ```toml [dependencies.mingling] -version = "0.2.0" +version = "0.2.1" features = [ "parser", "comp", diff --git a/docs/res/guide.txt b/docs/res/guide.txt index 0582f87..19d99ff 100644 --- a/docs/res/guide.txt +++ b/docs/res/guide.txt @@ -5,5 +5,5 @@ │ > cargo add mingling │ │ │ │ Or add this to your Cargo.toml │ - │ > mingling = "0.2.0" │ + │ > mingling = "0.2.1" │ └────────────────────────────────────┘ diff --git a/examples/example-argument-parse/Cargo.lock b/examples/example-argument-parse/Cargo.lock index d9a48ff..71ce5db 100644 --- a/examples/example-argument-parse/Cargo.lock +++ b/examples/example-argument-parse/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -26,18 +26,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-async-support/Cargo.lock b/examples/example-async-support/Cargo.lock index 2664c47..4c8627b 100644 --- a/examples/example-async-support/Cargo.lock +++ b/examples/example-async-support/Cargo.lock @@ -18,7 +18,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -27,18 +27,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-basic/Cargo.lock b/examples/example-basic/Cargo.lock index 7f15f15..10cd688 100644 --- a/examples/example-basic/Cargo.lock +++ b/examples/example-basic/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-clap-binding/Cargo.lock b/examples/example-clap-binding/Cargo.lock index 86380a9..d0d6e85 100644 --- a/examples/example-clap-binding/Cargo.lock +++ b/examples/example-clap-binding/Cargo.lock @@ -126,7 +126,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -134,18 +134,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-combine-pathf-dispatch-tree/Cargo.lock b/examples/example-combine-pathf-dispatch-tree/Cargo.lock index 5b29331..d19c929 100644 --- a/examples/example-combine-pathf-dispatch-tree/Cargo.lock +++ b/examples/example-combine-pathf-dispatch-tree/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,9 +25,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "mingling_pathf", @@ -35,9 +33,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", @@ -47,9 +43,7 @@ dependencies = [ [[package]] name = "mingling_pathf" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6991b5b4ec98b4a9eafcf1826a09810f9168cf0ab6f3945b07c7d1a23e805da2" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-completion/Cargo.lock b/examples/example-completion/Cargo.lock index fc224d2..03e140d 100644 --- a/examples/example-completion/Cargo.lock +++ b/examples/example-completion/Cargo.lock @@ -38,7 +38,7 @@ dependencies = [ [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -47,9 +47,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "just_template", @@ -57,9 +55,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-custom-pickable/Cargo.lock b/examples/example-custom-pickable/Cargo.lock index cf20477..d5505fe 100644 --- a/examples/example-custom-pickable/Cargo.lock +++ b/examples/example-custom-pickable/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -26,18 +26,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-dispatch-tree/Cargo.lock b/examples/example-dispatch-tree/Cargo.lock index efdab4e..adfc192 100644 --- a/examples/example-dispatch-tree/Cargo.lock +++ b/examples/example-dispatch-tree/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-enum-tag/Cargo.lock b/examples/example-enum-tag/Cargo.lock index baac42b..5b15850 100644 --- a/examples/example-enum-tag/Cargo.lock +++ b/examples/example-enum-tag/Cargo.lock @@ -38,7 +38,7 @@ dependencies = [ [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -47,9 +47,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "just_template", @@ -57,9 +55,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-error-handling/Cargo.lock b/examples/example-error-handling/Cargo.lock index 37af677..080ef59 100644 --- a/examples/example-error-handling/Cargo.lock +++ b/examples/example-error-handling/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-exitcode/Cargo.lock b/examples/example-exitcode/Cargo.lock index 9362562..fc3d15d 100644 --- a/examples/example-exitcode/Cargo.lock +++ b/examples/example-exitcode/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-help/Cargo.lock b/examples/example-help/Cargo.lock index 2a9897a..ebc8409 100644 --- a/examples/example-help/Cargo.lock +++ b/examples/example-help/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-hook/Cargo.lock b/examples/example-hook/Cargo.lock index 7dfedb9..3fa0770 100644 --- a/examples/example-hook/Cargo.lock +++ b/examples/example-hook/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-implicit-dispatcher/Cargo.lock b/examples/example-implicit-dispatcher/Cargo.lock index 01e92ef..3cfa702 100644 --- a/examples/example-implicit-dispatcher/Cargo.lock +++ b/examples/example-implicit-dispatcher/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-lazy-resources/Cargo.lock b/examples/example-lazy-resources/Cargo.lock index 3c5e8fd..083f55f 100644 --- a/examples/example-lazy-resources/Cargo.lock +++ b/examples/example-lazy-resources/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-outside-type/Cargo.lock b/examples/example-outside-type/Cargo.lock index f53f616..f360625 100644 --- a/examples/example-outside-type/Cargo.lock +++ b/examples/example-outside-type/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-pack-err/Cargo.lock b/examples/example-pack-err/Cargo.lock index ac4023f..7219536 100644 --- a/examples/example-pack-err/Cargo.lock +++ b/examples/example-pack-err/Cargo.lock @@ -30,7 +30,7 @@ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -39,9 +39,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "serde", @@ -50,9 +48,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-panic-unwind/Cargo.lock b/examples/example-panic-unwind/Cargo.lock index a3d9ef2..d73f0e4 100644 --- a/examples/example-panic-unwind/Cargo.lock +++ b/examples/example-panic-unwind/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -26,18 +26,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-pathfinder/Cargo.lock b/examples/example-pathfinder/Cargo.lock index aaa6bd3..1644cdf 100644 --- a/examples/example-pathfinder/Cargo.lock +++ b/examples/example-pathfinder/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,9 +25,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "mingling_pathf", @@ -35,9 +33,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", @@ -47,9 +43,7 @@ dependencies = [ [[package]] name = "mingling_pathf" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6991b5b4ec98b4a9eafcf1826a09810f9168cf0ab6f3945b07c7d1a23e805da2" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-repl-basic/Cargo.lock b/examples/example-repl-basic/Cargo.lock index 055f86d..0a51a1d 100644 --- a/examples/example-repl-basic/Cargo.lock +++ b/examples/example-repl-basic/Cargo.lock @@ -18,7 +18,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -27,18 +27,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-resources/Cargo.lock b/examples/example-resources/Cargo.lock index 7f540ab..630b919 100644 --- a/examples/example-resources/Cargo.lock +++ b/examples/example-resources/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -26,18 +26,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-setup/Cargo.lock b/examples/example-setup/Cargo.lock index bb10ccd..464f9a6 100644 --- a/examples/example-setup/Cargo.lock +++ b/examples/example-setup/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-structural-renderer/Cargo.lock b/examples/example-structural-renderer/Cargo.lock index dd9df69..cbfdb6a 100644 --- a/examples/example-structural-renderer/Cargo.lock +++ b/examples/example-structural-renderer/Cargo.lock @@ -30,7 +30,7 @@ checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -40,9 +40,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "serde", @@ -51,9 +49,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/example-unit-test/Cargo.lock b/examples/example-unit-test/Cargo.lock index 0efb2b2..ce8c5dc 100644 --- a/examples/example-unit-test/Cargo.lock +++ b/examples/example-unit-test/Cargo.lock @@ -17,7 +17,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -25,18 +25,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/examples/full-todolist/Cargo.lock b/examples/full-todolist/Cargo.lock index aad20d1..9206fad 100644 --- a/examples/full-todolist/Cargo.lock +++ b/examples/full-todolist/Cargo.lock @@ -31,7 +31,7 @@ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -41,9 +41,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "serde", @@ -52,9 +50,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/mingling_core/tests/test-all/Cargo.lock b/mingling_core/tests/test-all/Cargo.lock index be11bf7..d947c0b 100644 --- a/mingling_core/tests/test-all/Cargo.lock +++ b/mingling_core/tests/test-all/Cargo.lock @@ -111,7 +111,7 @@ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -121,9 +121,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "just_template", @@ -136,9 +134,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/mingling_core/tests/test-basic/Cargo.lock b/mingling_core/tests/test-basic/Cargo.lock index 618d261..8aecb31 100644 --- a/mingling_core/tests/test-basic/Cargo.lock +++ b/mingling_core/tests/test-basic/Cargo.lock @@ -10,7 +10,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -18,18 +18,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/mingling_core/tests/test-comp/Cargo.lock b/mingling_core/tests/test-comp/Cargo.lock index 244f259..b6e36ed 100644 --- a/mingling_core/tests/test-comp/Cargo.lock +++ b/mingling_core/tests/test-comp/Cargo.lock @@ -31,7 +31,7 @@ dependencies = [ [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -39,9 +39,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "just_template", @@ -49,9 +47,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/mingling_core/tests/test-dispatch-tree/Cargo.lock b/mingling_core/tests/test-dispatch-tree/Cargo.lock index 1a1a5d4..93ea87c 100644 --- a/mingling_core/tests/test-dispatch-tree/Cargo.lock +++ b/mingling_core/tests/test-dispatch-tree/Cargo.lock @@ -10,7 +10,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -18,18 +18,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/mingling_core/tests/test-repl/Cargo.lock b/mingling_core/tests/test-repl/Cargo.lock index fa22fcf..c26e610 100644 --- a/mingling_core/tests/test-repl/Cargo.lock +++ b/mingling_core/tests/test-repl/Cargo.lock @@ -10,7 +10,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -18,18 +18,14 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", ] [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/mingling_core/tests/test-structural-renderer/Cargo.lock b/mingling_core/tests/test-structural-renderer/Cargo.lock index 33cb0f4..1a015f8 100644 --- a/mingling_core/tests/test-structural-renderer/Cargo.lock +++ b/mingling_core/tests/test-structural-renderer/Cargo.lock @@ -53,7 +53,7 @@ checksum = "6b947ae49db0d222b1dbc6b113ce7248a3fc3a6ca21b696717bfc000ba4484d8" [[package]] name = "mingling" -version = "0.2.0" +version = "0.2.1" dependencies = [ "mingling_core", "mingling_macros", @@ -63,9 +63,7 @@ dependencies = [ [[package]] name = "mingling_core" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde" +version = "0.2.1" dependencies = [ "just_fmt", "ron", @@ -77,9 +75,7 @@ dependencies = [ [[package]] name = "mingling_macros" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", diff --git a/mingling_pathf/test/Cargo.lock b/mingling_pathf/test/Cargo.lock index e5fd23a..ab0a711 100644 --- a/mingling_pathf/test/Cargo.lock +++ b/mingling_pathf/test/Cargo.lock @@ -10,7 +10,7 @@ checksum = "5454cda0d57db59778608d7a47bff5b16c6705598265869fb052b657f66cf05e" [[package]] name = "mingling_pathf" -version = "0.2.0" +version = "0.2.1" dependencies = [ "just_fmt", "proc-macro2", |
