aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-30 22:34:12 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-30 22:41:03 +0800
commit9bbb5eb14aa54fea87d55c25e5117c6202776359 (patch)
treebcdd68f3b41c530e4171d6a1512af0944a7a7c15
parent738f2f18048983159c704d1143af25af55504a2b (diff)
Released Mingling 0.2.0HEAD0.2.0main
-rw-r--r--Cargo.lock47
-rw-r--r--Cargo.toml6
-rw-r--r--examples/example-argument-parse/Cargo.lock4
-rw-r--r--examples/example-async-support/Cargo.lock4
-rw-r--r--examples/example-basic/Cargo.lock4
-rw-r--r--examples/example-clap-binding/Cargo.lock4
-rw-r--r--examples/example-combine-pathf-dispatch-tree/Cargo.lock6
-rw-r--r--examples/example-completion/Cargo.lock4
-rw-r--r--examples/example-custom-pickable/Cargo.lock4
-rw-r--r--examples/example-dispatch-tree/Cargo.lock4
-rw-r--r--examples/example-enum-tag/Cargo.lock4
-rw-r--r--examples/example-error-handling/Cargo.lock4
-rw-r--r--examples/example-exitcode/Cargo.lock4
-rw-r--r--examples/example-help/Cargo.lock4
-rw-r--r--examples/example-hook/Cargo.lock4
-rw-r--r--examples/example-implicit-dispatcher/Cargo.lock4
-rw-r--r--examples/example-lazy-resources/Cargo.lock4
-rw-r--r--examples/example-outside-type/Cargo.lock4
-rw-r--r--examples/example-pack-err/Cargo.lock4
-rw-r--r--examples/example-panic-unwind/Cargo.lock4
-rw-r--r--examples/example-pathfinder/Cargo.lock6
-rw-r--r--examples/example-repl-basic/Cargo.lock4
-rw-r--r--examples/example-resources/Cargo.lock4
-rw-r--r--examples/example-setup/Cargo.lock4
-rw-r--r--examples/example-structural-renderer/Cargo.lock4
-rw-r--r--examples/example-unit-test/Cargo.lock4
-rw-r--r--examples/full-todolist/Cargo.lock4
-rw-r--r--mingling_core/tests/test-all/Cargo.lock4
-rw-r--r--mingling_core/tests/test-basic/Cargo.lock4
-rw-r--r--mingling_core/tests/test-comp/Cargo.lock4
-rw-r--r--mingling_core/tests/test-dispatch-tree/Cargo.lock4
-rw-r--r--mingling_core/tests/test-repl/Cargo.lock4
-rw-r--r--mingling_core/tests/test-structural-renderer/Cargo.lock4
-rw-r--r--mingling_macros/Cargo.toml2
-rw-r--r--mingling_pathf/Cargo.toml3
35 files changed, 179 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 16c3e69..8528c51 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -404,8 +404,8 @@ name = "mingling"
version = "0.2.0"
dependencies = [
"mingling",
- "mingling_core",
- "mingling_macros",
+ "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)",
"serde",
"size",
"tokio",
@@ -433,7 +433,25 @@ dependencies = [
"just_fmt",
"just_template",
"log",
- "mingling_pathf",
+ "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"
+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",
@@ -452,8 +470,31 @@ dependencies = [
]
[[package]]
+name = "mingling_macros"
+version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
+dependencies = [
+ "just_fmt",
+ "proc-macro2",
+ "quote",
+ "syn",
+]
+
+[[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"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/Cargo.toml b/Cargo.toml
index b19bfb9..3ee0168 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -17,9 +17,9 @@ exclude = [
]
[workspace.dependencies]
-mingling_core = { path = "mingling_core", default-features = false }
-mingling_macros = { path = "mingling_macros", default-features = false }
-mingling_pathf = { path = "mingling_pathf", default-features = false }
+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 }
just_fmt = "0.1.2"
just_template = "0.2.0"
diff --git a/examples/example-argument-parse/Cargo.lock b/examples/example-argument-parse/Cargo.lock
index a424789..d9a48ff 100644
--- a/examples/example-argument-parse/Cargo.lock
+++ b/examples/example-argument-parse/Cargo.lock
@@ -27,6 +27,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -34,6 +36,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-async-support/Cargo.lock b/examples/example-async-support/Cargo.lock
index 3e23e92..2664c47 100644
--- a/examples/example-async-support/Cargo.lock
+++ b/examples/example-async-support/Cargo.lock
@@ -28,6 +28,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -35,6 +37,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-basic/Cargo.lock b/examples/example-basic/Cargo.lock
index 6d22a16..7f15f15 100644
--- a/examples/example-basic/Cargo.lock
+++ b/examples/example-basic/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-clap-binding/Cargo.lock b/examples/example-clap-binding/Cargo.lock
index 63c5940..86380a9 100644
--- a/examples/example-clap-binding/Cargo.lock
+++ b/examples/example-clap-binding/Cargo.lock
@@ -135,6 +135,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -142,6 +144,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
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 8b1f186..5b29331 100644
--- a/examples/example-combine-pathf-dispatch-tree/Cargo.lock
+++ b/examples/example-combine-pathf-dispatch-tree/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"mingling_pathf",
@@ -34,6 +36,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
@@ -44,6 +48,8 @@ dependencies = [
[[package]]
name = "mingling_pathf"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6991b5b4ec98b4a9eafcf1826a09810f9168cf0ab6f3945b07c7d1a23e805da2"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-completion/Cargo.lock b/examples/example-completion/Cargo.lock
index 0da9702..fc224d2 100644
--- a/examples/example-completion/Cargo.lock
+++ b/examples/example-completion/Cargo.lock
@@ -48,6 +48,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"just_template",
@@ -56,6 +58,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-custom-pickable/Cargo.lock b/examples/example-custom-pickable/Cargo.lock
index 08b3a6f..cf20477 100644
--- a/examples/example-custom-pickable/Cargo.lock
+++ b/examples/example-custom-pickable/Cargo.lock
@@ -27,6 +27,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -34,6 +36,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-dispatch-tree/Cargo.lock b/examples/example-dispatch-tree/Cargo.lock
index 305ea70..efdab4e 100644
--- a/examples/example-dispatch-tree/Cargo.lock
+++ b/examples/example-dispatch-tree/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-enum-tag/Cargo.lock b/examples/example-enum-tag/Cargo.lock
index 3cb4258..baac42b 100644
--- a/examples/example-enum-tag/Cargo.lock
+++ b/examples/example-enum-tag/Cargo.lock
@@ -48,6 +48,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"just_template",
@@ -56,6 +58,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-error-handling/Cargo.lock b/examples/example-error-handling/Cargo.lock
index c9bddd8..37af677 100644
--- a/examples/example-error-handling/Cargo.lock
+++ b/examples/example-error-handling/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-exitcode/Cargo.lock b/examples/example-exitcode/Cargo.lock
index 96bc223..9362562 100644
--- a/examples/example-exitcode/Cargo.lock
+++ b/examples/example-exitcode/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-help/Cargo.lock b/examples/example-help/Cargo.lock
index 325f3ca..2a9897a 100644
--- a/examples/example-help/Cargo.lock
+++ b/examples/example-help/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-hook/Cargo.lock b/examples/example-hook/Cargo.lock
index af0f614..7dfedb9 100644
--- a/examples/example-hook/Cargo.lock
+++ b/examples/example-hook/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-implicit-dispatcher/Cargo.lock b/examples/example-implicit-dispatcher/Cargo.lock
index 3ebc5e9..01e92ef 100644
--- a/examples/example-implicit-dispatcher/Cargo.lock
+++ b/examples/example-implicit-dispatcher/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-lazy-resources/Cargo.lock b/examples/example-lazy-resources/Cargo.lock
index 33229d2..3c5e8fd 100644
--- a/examples/example-lazy-resources/Cargo.lock
+++ b/examples/example-lazy-resources/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-outside-type/Cargo.lock b/examples/example-outside-type/Cargo.lock
index b4ca61c..f53f616 100644
--- a/examples/example-outside-type/Cargo.lock
+++ b/examples/example-outside-type/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-pack-err/Cargo.lock b/examples/example-pack-err/Cargo.lock
index 258bdd7..ac4023f 100644
--- a/examples/example-pack-err/Cargo.lock
+++ b/examples/example-pack-err/Cargo.lock
@@ -40,6 +40,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"serde",
@@ -49,6 +51,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-panic-unwind/Cargo.lock b/examples/example-panic-unwind/Cargo.lock
index 7ec0af7..a3d9ef2 100644
--- a/examples/example-panic-unwind/Cargo.lock
+++ b/examples/example-panic-unwind/Cargo.lock
@@ -27,6 +27,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -34,6 +36,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-pathfinder/Cargo.lock b/examples/example-pathfinder/Cargo.lock
index 36840e7..aaa6bd3 100644
--- a/examples/example-pathfinder/Cargo.lock
+++ b/examples/example-pathfinder/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"mingling_pathf",
@@ -34,6 +36,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
@@ -44,6 +48,8 @@ dependencies = [
[[package]]
name = "mingling_pathf"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "6991b5b4ec98b4a9eafcf1826a09810f9168cf0ab6f3945b07c7d1a23e805da2"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-repl-basic/Cargo.lock b/examples/example-repl-basic/Cargo.lock
index b96ae7f..055f86d 100644
--- a/examples/example-repl-basic/Cargo.lock
+++ b/examples/example-repl-basic/Cargo.lock
@@ -28,6 +28,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -35,6 +37,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-resources/Cargo.lock b/examples/example-resources/Cargo.lock
index b60d9f8..7f540ab 100644
--- a/examples/example-resources/Cargo.lock
+++ b/examples/example-resources/Cargo.lock
@@ -27,6 +27,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -34,6 +36,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-setup/Cargo.lock b/examples/example-setup/Cargo.lock
index 5e0a341..bb10ccd 100644
--- a/examples/example-setup/Cargo.lock
+++ b/examples/example-setup/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-structural-renderer/Cargo.lock b/examples/example-structural-renderer/Cargo.lock
index cee5ae3..dd9df69 100644
--- a/examples/example-structural-renderer/Cargo.lock
+++ b/examples/example-structural-renderer/Cargo.lock
@@ -41,6 +41,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"serde",
@@ -50,6 +52,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/example-unit-test/Cargo.lock b/examples/example-unit-test/Cargo.lock
index fa06882..0efb2b2 100644
--- a/examples/example-unit-test/Cargo.lock
+++ b/examples/example-unit-test/Cargo.lock
@@ -26,6 +26,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -33,6 +35,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/examples/full-todolist/Cargo.lock b/examples/full-todolist/Cargo.lock
index 3ce4651..aad20d1 100644
--- a/examples/full-todolist/Cargo.lock
+++ b/examples/full-todolist/Cargo.lock
@@ -42,6 +42,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"serde",
@@ -51,6 +53,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/mingling_core/tests/test-all/Cargo.lock b/mingling_core/tests/test-all/Cargo.lock
index b92e13f..be11bf7 100644
--- a/mingling_core/tests/test-all/Cargo.lock
+++ b/mingling_core/tests/test-all/Cargo.lock
@@ -122,6 +122,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"just_template",
@@ -135,6 +137,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/mingling_core/tests/test-basic/Cargo.lock b/mingling_core/tests/test-basic/Cargo.lock
index 212d194..618d261 100644
--- a/mingling_core/tests/test-basic/Cargo.lock
+++ b/mingling_core/tests/test-basic/Cargo.lock
@@ -19,6 +19,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -26,6 +28,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/mingling_core/tests/test-comp/Cargo.lock b/mingling_core/tests/test-comp/Cargo.lock
index f339baf..244f259 100644
--- a/mingling_core/tests/test-comp/Cargo.lock
+++ b/mingling_core/tests/test-comp/Cargo.lock
@@ -40,6 +40,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"just_template",
@@ -48,6 +50,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
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 03b1e84..1a1a5d4 100644
--- a/mingling_core/tests/test-dispatch-tree/Cargo.lock
+++ b/mingling_core/tests/test-dispatch-tree/Cargo.lock
@@ -19,6 +19,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -26,6 +28,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/mingling_core/tests/test-repl/Cargo.lock b/mingling_core/tests/test-repl/Cargo.lock
index 118681a..fa22fcf 100644
--- a/mingling_core/tests/test-repl/Cargo.lock
+++ b/mingling_core/tests/test-repl/Cargo.lock
@@ -19,6 +19,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
]
@@ -26,6 +28,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
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 39077be..33cb0f4 100644
--- a/mingling_core/tests/test-structural-renderer/Cargo.lock
+++ b/mingling_core/tests/test-structural-renderer/Cargo.lock
@@ -64,6 +64,8 @@ dependencies = [
[[package]]
name = "mingling_core"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "8574549fae598e8056016c1760d85bdb962a60228d31b3a00bcdd37a40eabfde"
dependencies = [
"just_fmt",
"ron",
@@ -76,6 +78,8 @@ dependencies = [
[[package]]
name = "mingling_macros"
version = "0.2.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "083f1190c65174044c59814ccd12dcb4620085c325fcfa4f3b364943ec2cbe07"
dependencies = [
"just_fmt",
"proc-macro2",
diff --git a/mingling_macros/Cargo.toml b/mingling_macros/Cargo.toml
index 66f654b..1191015 100644
--- a/mingling_macros/Cargo.toml
+++ b/mingling_macros/Cargo.toml
@@ -8,7 +8,7 @@ readme = "README.md"
repository.workspace = true
description = "Macros of the mingling library"
keywords = ["cli", "macros", "procedural", "command-line", "framework"]
-categories = ["command-line-interface", "development-tools::procedural-macros"]
+categories = ["command-line-interface"]
[lib]
proc-macro = true
diff --git a/mingling_pathf/Cargo.toml b/mingling_pathf/Cargo.toml
index 84bb260..0d4e37a 100644
--- a/mingling_pathf/Cargo.toml
+++ b/mingling_pathf/Cargo.toml
@@ -2,8 +2,11 @@
name = "mingling_pathf"
version.workspace = true
edition.workspace = true
+authors = ["Weicao-CatilGrass"]
license.workspace = true
repository.workspace = true
+readme = "README.md"
+description = "A library for automatically finding internal types generated by Mingling"
[dependencies]
syn.workspace = true