The readme suggests passing --auto-req no to disable the automatic dependency processing, however that doesn't work since "no" isn't an option in the AutoReqModeenum
> cargo generate-rpm --auto-req no
error: invalid value 'no' for '--auto-req <AUTO_REQ>'
[possible values: disabled, builtin, find-requires, /path/to/find-requires]
For more information, try '--help'.
Happy to submit a PR updating the docs s/no/disabled/ but adding an alias of no is also an option.
The readme suggests passing
--auto-req no
to disable the automatic dependency processing, however that doesn't work since "no" isn't an option in theAutoReqMode
enumHappy to submit a PR updating the docs s/no/disabled/ but adding an alias of no is also an option.