Skip to content

Commit

Permalink
misc(args): add version and about, add me to ~cargo.toml authors
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeromos Kovács committed Nov 25, 2024
1 parent 5b1bd38 commit 38990df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ license = "GPL-3.0-or-later"
description = "No-bullshit, lightweight, Tournament Manager with a cli."
# documentation = "https://docs.rs/tuna-man"
repository = "https://codeberg.org/jark/tuna-man"
authors = ["Jeromos Kovács <iitsnotme214@proton.me>"]

[dependencies]
clap = { version = "4.5.21", features = ["derive"] }
Expand Down
1 change: 1 addition & 0 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ use crate::tournament::format;
use std::path::PathBuf;

#[derive(clap::Parser, Clone, Debug, PartialEq, Eq)]
#[command(version, about, long_about)]
pub struct Args {
/// Path to file with participants: '<player/team>,<class>' syntax, where <class> is optional
pub file: PathBuf,
Expand Down

0 comments on commit 38990df

Please sign in to comment.