Urban-Analytics-Technology-Platform / popgetter-cli

A rust library and CLI for accessing popgetter data
0 stars 0 forks source link

Cli isn't parsing bounding boxes with leading negative numbers #21

Closed stuartlynn closed 1 month ago

stuartlynn commented 1 month ago

Using a command line argument like --bbox -10,2,-11,3 fails to parse as clap thinks the -'s are short options.

I think we just need to add Arg::allow_hyphen_values(true) to the arg definition.