What problem does this solve or what need does it fill?
I have a few alias setup in my .cargo/config.toml that I'm used to using with cargo but they don't work with bevy_cli.
https://doc.rust-lang.org/cargo/reference/config.html#alias
What solution would you like?
Read the config file and support the alias
What alternative(s) have you considered?
Just keep writing everything the long way
Additional context
I really like using rr = "run --release" as an example of an alias I use all the time. I also have exr = "run --release --example"
What problem does this solve or what need does it fill?
I have a few alias setup in my
.cargo/config.tomlthat I'm used to using with cargo but they don't work with bevy_cli.https://doc.rust-lang.org/cargo/reference/config.html#alias
What solution would you like?
Read the config file and support the alias
What alternative(s) have you considered?
Just keep writing everything the long way
Additional context
I really like using
rr = "run --release"as an example of an alias I use all the time. I also haveexr = "run --release --example"