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

Commit 094a611

Browse files
committed
Overlapping option flag
1 parent 0ff5b33 commit 094a611

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "imgur_id7"
3-
version = "0.1.7"
3+
version = "0.1.8"
44
edition = "2021"
55
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"
66

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Options:
2626
Defaults to nicolas17's tracker
2727
-c, --concurrent <CONCURRENT>
2828
How many requests to queue per second (actual rate will be slightly lower) [default: 3]
29-
-c, --concurrent-unsafe
29+
--concurrent-unsafe
3030
Bypass concurrency sanity check
3131
-h, --help
3232
Print help

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ struct Args {
5050
#[arg(short, long, default_value_t = 3)]
5151
pub concurrent: usize,
5252
/// Bypass concurrency sanity check
53-
#[arg(short, long, default_value_t = false)]
53+
#[arg(long, default_value_t = false)]
5454
pub concurrent_unsafe: bool,
5555
}
5656

0 commit comments

Comments
 (0)