You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The general idea behind this feature is the following. Take a configuration file:
my_option = "foo"
and a CLI which also wants to provide the option my_option which, if provided overrides the config state and if isn't, just uses the default provided by the configuration.
Open Questions
A similar problem was already solved by config (and others), can we just use their work/ be compatible with them?
It should also be to use this feature with clap.rs directly, structopt or thunder so a more generic approach is generally good
The text was updated successfully, but these errors were encountered:
I came looking for clap integration. Aside, I've so far decided not to use config crate anymore. I don't want to use toml anyway. SCL is too good, and I really haven't seen any need for the level of configurability that config offers.
The general idea behind this feature is the following. Take a configuration file:
and a CLI which also wants to provide the option
my_option
which, if provided overrides the config state and if isn't, just uses the default provided by the configuration.Open Questions
clap.rs
directly,structopt
orthunder
so a more generic approach is generally goodThe text was updated successfully, but these errors were encountered: