Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,11 @@ Options:
-T <CONTENT_TYPE>
Content-Type.
-a <BASIC_AUTH>
Basic authentication, username:password
Basic authentication (username:password), or AWS credentials (access_key:secret_key)
--aws-session <AWS_SESSION>
AWS session token
--aws-sigv4 <AWS_SIGV4>
AWS SigV4 signing params (format: aws:amz:region:service)
-x <PROXY>
HTTP proxy
--proxy-http-version <PROXY_HTTP_VERSION>
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ Note: If qps is specified, burst will be ignored",
#[arg(help = "Content-Type.", short = 'T')]
content_type: Option<String>,
#[arg(
help = "Basic authentication or AWS credentials, username:password",
help = "Basic authentication (username:password), or AWS credentials (access_key:secret_key)",
short = 'a'
)]
basic_auth: Option<String>,
Expand Down