Skip to content
This repository has been archived by the owner on Nov 28, 2023. It is now read-only.

Commit

Permalink
Overlapping option flag
Browse files Browse the repository at this point in the history
  • Loading branch information
imerr committed May 19, 2023
1 parent 0ff5b33 commit 094a611
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "imgur_id7"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
description = "Fast tool to scan for valid 7-long imgur ids for the ArchiveTeam imgur efforts (not affiliated or endorsed).\nResults are automatically reported to nicolas17's browser based tool: https://data.nicolas17.xyz/imgur-bruteforce/ unless disabled with --offline"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Options:
Defaults to nicolas17's tracker
-c, --concurrent <CONCURRENT>
How many requests to queue per second (actual rate will be slightly lower) [default: 3]
-c, --concurrent-unsafe
--concurrent-unsafe
Bypass concurrency sanity check
-h, --help
Print help
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ struct Args {
#[arg(short, long, default_value_t = 3)]
pub concurrent: usize,
/// Bypass concurrency sanity check
#[arg(short, long, default_value_t = false)]
#[arg(long, default_value_t = false)]
pub concurrent_unsafe: bool,
}

Expand Down

0 comments on commit 094a611

Please sign in to comment.