diff --git a/post-rs/src/main.rs b/post-rs/src/main.rs index f24e9cc..6a68550 100644 --- a/post-rs/src/main.rs +++ b/post-rs/src/main.rs @@ -2,7 +2,8 @@ //! ```cargo //! [dependencies] -//! clap = "4.1.8" +//! base64 = "0.21.0" +//! clap = { version = "4.1.8", features = ["derive"] } //! reqwest = { version = "0.11.14", features = ["blocking", "json"] } //! rust_util = "0.6.41" //! serde = { version = "1.0.152", features = ["derive"] } @@ -17,7 +18,7 @@ use clap::{arg, Parser}; use rust_util::{debugging, failure_and_exit, information, success}; #[derive(Parser, Debug)] -#[command(author, version, about, long_about = None)] +#[command(author, version, about, long_about = None, bin_name="post.rs")] struct Args { /// Access Token, or from environment: POST_RS_TOKEN #[arg(short, long)]