From 7cc6e9da38b861692a2e7ff038e87ba9ae2261b9 Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sun, 29 Mar 2026 15:00:58 +0800 Subject: Replace local mingling_macros dependency with published version --- mingling/Cargo.lock | 2 ++ mingling/Cargo.toml | 4 ++-- mingling_macros/Cargo.toml | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/mingling/Cargo.lock b/mingling/Cargo.lock index 2ddc3e3..cf6b520 100644 --- a/mingling/Cargo.lock +++ b/mingling/Cargo.lock @@ -65,6 +65,8 @@ dependencies = [ [[package]] name = "mingling_macros" version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3790886e4504e486d8c963988e5780212ccc05c5d03a5d27fa2ba67e1dd3f13b" dependencies = [ "just_fmt", "once_cell", diff --git a/mingling/Cargo.toml b/mingling/Cargo.toml index bc6db7b..ed5e8cd 100644 --- a/mingling/Cargo.toml +++ b/mingling/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT OR Apache-2.0" readme = "README.md" description = "A procedural command-line framework with subcommand support" keywords = ["cli", "framework", "procedural", "subcommand", "command-line"] -categories = ["command-line"] +categories = ["command-line-interface"] repository = "https://github.com/catilgrass/mingling" [features] @@ -16,7 +16,7 @@ macros = ["mingling_macros"] serde_renderer = ["dep:serde", "mingling_macros/serde"] [dependencies] -mingling_macros = { path = "../mingling_macros", optional = true } +mingling_macros = { version = "0.1.0", optional = true } just_fmt = "0.1.2" serde = { version = "1.0", features = ["derive"], optional = true } thiserror = "2" diff --git a/mingling_macros/Cargo.toml b/mingling_macros/Cargo.toml index f99e274..b690505 100644 --- a/mingling_macros/Cargo.toml +++ b/mingling_macros/Cargo.toml @@ -4,6 +4,7 @@ version = "0.1.0" edition = "2024" license = "MIT OR Apache-2.0" repository = "https://github.com/catilgrass/mingling" +description = "Macros for the mingling library" [lib] proc-macro = true -- cgit