you are viewing a single comment's thread
view the rest of the comments
[–] 5 points 11 months ago (1 child)

Clap has dependent options and mutually-exclusive argument groups built-in: https://docs.rs/clap/latest/clap/_derive/_tutorial/index.html#argument-relations

For the environment-specific requirements, you can use compiler feature flags...

  • source
  • parent
  • hideshow 2 child comments
  • [–] 7 points 11 months ago (1 child)

    Mentioned this to the other commenter, but this doesn't use the type system to enforce the mutual exclusivity constraint. In Rust, the main way to do that via the type system is through enums.

  • source
  • parent
  • hideshow 2 child comments
  • [–] 3 points 11 months ago

    Ah, fair enough. Not sure how to do that then.

    I was gonna say, I feel like the current method does a good enough job documenting that validation has happened, but I guess you do want it reflected in the structure of the type, so that the code that takes the information from the struct can safely make the assumption that some of the options don't exist. And then, yeah, it would be nice to not need a separate parsing step for that.

  • source
  • parent