diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-19 01:40:38 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-19 01:40:38 +0800 |
| commit | 1e9c97c21f8a4e55420712b054895ff8b4f9a849 (patch) | |
| tree | c6bd37889deb54c024f974f368a9a7d654cad822 /rola-cli/Cargo.toml | |
| parent | e078163c7cdbbf226c18d3e3afa7268a2878e18b (diff) | |
Implement bucket bind CRUD operations and config loading, along with
CLI integration for listing, setting, and removing bucket bindings.
Diffstat (limited to 'rola-cli/Cargo.toml')
| -rw-r--r-- | rola-cli/Cargo.toml | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/rola-cli/Cargo.toml b/rola-cli/Cargo.toml index 0ed9a3b..c9cf562 100644 --- a/rola-cli/Cargo.toml +++ b/rola-cli/Cargo.toml @@ -13,6 +13,7 @@ shared_macros.workspace = true space-system.workspace = true +serde.workspace = true tokio.workspace = true colored = "3.1.1" @@ -20,20 +21,23 @@ chrono = "0.4.45" env_logger = "0.11.10" log = "0.4.32" shakehand = "0.1.3" +clap = { version = "4.6.1", features = ["derive"] } [dependencies.mingling] git = "https://github.com/mingling-rs/mingling.git" -rev = "002f3fd390f64b1d7632f8530a0db81d45edf6c2" +rev = "4be889ac2dc5263ce03bb014de24916bee2e9aa8" features = [ "parser", "extra_macros", "dispatch_tree", - "comp" + "comp", + "clap", + "general_renderer" ] [build-dependencies.mingling] git = "https://github.com/mingling-rs/mingling.git" -rev = "002f3fd390f64b1d7632f8530a0db81d45edf6c2" +rev = "4be889ac2dc5263ce03bb014de24916bee2e9aa8" features = [ "builds", "comp" |
