diff options
author | Alec Di Vito <me@alecdivito.com> | 2025-02-17 04:35:26 +0000 |
---|---|---|
committer | Alec Di Vito <me@alecdivito.com> | 2025-02-17 04:35:26 +0000 |
commit | 413a63a60307bdf60229670b0f858963604d62a3 (patch) | |
tree | 45c4e203bf2d39d7cc13b96b30813be6ce44fb74 /src/args.rs | |
parent | Merge branch 'svenstaro:master' into upload-progress-bar (diff) | |
download | miniserve-413a63a60307bdf60229670b0f858963604d62a3.tar.gz miniserve-413a63a60307bdf60229670b0f858963604d62a3.zip |
feat: implement temporary file uploads and tweak mobile design
Diffstat (limited to 'src/args.rs')
-rw-r--r-- | src/args.rs | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/args.rs b/src/args.rs index f117b1c..17f6c84 100644 --- a/src/args.rs +++ b/src/args.rs @@ -165,13 +165,17 @@ pub struct CliArgs { /// When specified via environment variable, a path always needs to be specified. #[arg(short = 'u', long = "upload-files", value_hint = ValueHint::FilePath, num_args(0..=1), value_delimiter(','), env = "MINISERVE_ALLOWED_UPLOAD_DIR")] pub allowed_upload_dir: Option<Vec<PathBuf>>, - + /// Configure amount of concurrent uploads when visiting the website. Must have /// upload-files option enabled for this setting to matter. - /// + /// /// For example, a value of 4 would mean that the web browser will only upload /// 4 files at a time to the web server when using the web browser interface. - #[arg(long = "web-upload-files-concurrency", env = "MINISERVE_WEB_UPLOAD_CONCURRENCY", default_value = "0")] + #[arg( + long = "web-upload-files-concurrency", + env = "MINISERVE_WEB_UPLOAD_CONCURRENCY", + default_value = "0" + )] pub web_upload_concurrency: usize, /// Enable creating directories |