Brief Description
The current CLI used in iceoryx2-cli
and some examples utilizes clap
with default features, which is coupled to the standard library environment parsing and printing mechanisms.
Separating these concerns from the cli core would allow for the CLI to be used in environments where the standard library is not available.
Options to consider:
- Use
clap
without standard library features combined with argument parsing and printing mechanisms that do not depend on the standard library
- Implement own CLI with no standard library dependency