Skip to content

Commit

Permalink
feat(defaults): Set sane defaults and bump deps (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
dark0dave authored Feb 26, 2024
2 parents f77a42e + b3ab869 commit bbcfd2c
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 57 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
build:
runs-on: ${{ matrix.os }}
strategy:
Expand Down
106 changes: 53 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mod_installer"
version = "0.1.0"
version = "3.5.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
4 changes: 2 additions & 2 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ pub struct Args {
pub depth: usize,

/// Compare against installed weidu log, note this is best effort
#[clap(env, long, short, action=ArgAction::SetTrue)]
#[clap(env, long, short, action=ArgAction::SetTrue, default_value = "true")]
pub skip_installed: bool,

/// If a warning occurs in the weidu child process exit
#[clap(env, long, short, action=ArgAction::SetTrue)]
#[clap(env, long, short, action=ArgAction::SetTrue, default_value = "true")]
pub abort_on_warnings: bool,

/// Timeout time per mod in seconds, default is 1 hour
Expand Down

0 comments on commit bbcfd2c

Please sign in to comment.