From 010a7f73f2c499845ec5a31dc75428fa6666e639 Mon Sep 17 00:00:00 2001 From: Stephen D Date: Sun, 13 Oct 2024 13:40:55 -0300 Subject: [PATCH] allow hyphen at start of bbox argument --- src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/args.rs b/src/args.rs index 009a475..2240f9b 100644 --- a/src/args.rs +++ b/src/args.rs @@ -14,7 +14,7 @@ use std::time::Duration; ))] pub struct Args { /// Bounding box of the area (min_lng,min_lat,max_lng,max_lat) (required) - #[arg(long)] + #[arg(long, allow_hyphen_values = true)] pub bbox: Option, /// JSON file containing OSM data (optional)