fixed help command binary name

This commit is contained in:
Waradu 2024-10-20 12:06:21 +02:00
parent 5e8154f21d
commit 67c91ccad7
No known key found for this signature in database
GPG key ID: F85AAC8BA8B8DAAD
3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -1306,7 +1306,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "to-streamshare"
version = "0.3.0"
version = "0.3.1"
dependencies = [
"clap",
"streamshare",

View file

@ -1,6 +1,6 @@
[package]
name = "to-streamshare"
version = "0.3.0"
version = "0.3.1"
edition = "2021"
description = "Upload to streamshare (to-ss > toss) from the terminal"
license = "MIT"

View file

@ -2,7 +2,7 @@ use clap::{CommandFactory, Parser};
use streamshare::{delete, upload};
#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
#[command(name = "toss", version, about, long_about = None)]
struct Args {
file: Option<String>,