vimpunk / cratetorrent

A BitTorrent V1 engine library for Rust (and currently Linux)
468 stars 35 forks source link

Fix clap errors #92

Closed nikitalita closed 3 years ago

nikitalita commented 3 years ago

cratetorrent-cli would panic at runtime with this error: thread 'main' panicked at 'Argument short must be unique

this was because both the mode and metainfo options had an automatic short option generated for them and they both used -m. I've removed the short option from mode.

Closes #93

vimpunk commented 3 years ago

Ouch! Good catch, thank you!