Add help command

This commit is contained in:
2025-01-30 02:34:03 +00:00
parent 417621d422
commit 982156e443
6 changed files with 224 additions and 0 deletions

13
Cargo.lock generated
View File

@@ -343,6 +343,7 @@ dependencies = [
"clap 4.5.27",
"dotenvy",
"env_logger",
"futures",
"humantime",
"log",
"poise",
@@ -857,6 +858,7 @@ checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
@@ -879,6 +881,17 @@ version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
[[package]]
name = "futures-executor"
version = "0.3.31"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
version = "0.3.31"