What's the easiest way to set or bump the version in a Cargo.toml file via a script? I have a script which bumps a package.json to eg. "14.0.0-alpha.3" and want to set the toml file to the same version #rustlang #webdev
Comments
Log in with your Bluesky account to leave a comment
Thanks a lot Andrew. I managed to find `cargo set-version` via the cargo release readme which is ideal for my scenario. The package is a mix of Rust and TypeScript and I'm using JS tooling for releases, this last bit has fixed my problem.
Comments