cargo
cargo copied to clipboard
Add set/edit/delete to `cargo config`
Describe the problem you are trying to solve
According to the previous design document, it seems that the delete
, set
and edit
subcommands are currently missing.
I want to try to complete these sub-commands. Please tell me what else needs to be solved?
#9301
https://github.com/rust-lang/cargo/pull/9302#issuecomment-807487505
I want to complete the following three commands step by step.
- [ ] Add
cargo config delete
- [ ] Add
cargo config set
- [ ] Add
cargo config edit
If I want to further improve cargo config
, what else can I help? I would be happy to participate in the cargo
project.
Cargo currently doesn't have TOML-editing support. @epage has been working on toml-edit, so maybe they can let you know if there is anything you can help with working on that.
https://github.com/ordian/toml_edit/issues/133 is the tracking issue for getting feature parity for cargo
.
We might also need
- https://github.com/ordian/toml_edit/issues/128
- https://github.com/ordian/toml_edit/issues/192
- https://github.com/ordian/toml_edit/issues/205