3 releases
0.1.2 | May 5, 2024 |
---|---|
0.1.1 | May 5, 2024 |
0.1.0 | May 5, 2024 |
#151 in Cargo plugins
7KB
63 lines
cargo set
This is a Cargo plugin for quickly setting up the contents of a Cargo.toml file.
Install
cargo install cargo-set
Use
./Cargo.toml:
[package]
name = "cargo-set"
version = "0.1.0"
publish = true
Run:
cargo set package.name "test"
cargo set package.version "\"0.2.0\""
cargo set package.publish false
!: Numeric strings need to be wrapped in
\"0.2.0\"
. Currently, only setting Int, Float, Bool, and String is supported.
Update ./Cargo.toml:
[package]
name = "test"
version = "0.2.0"
publish = false
About
Dependencies
~2.5–3.5MB
~65K SLoC