-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
There are some cargo automation commands to help:
- reformat Cargo.toml,
- update crates and regenerate fresh lock file,
- correct a minor code warning,
- set the minimum supported rust version,
- tune the package,
- remove unused dependencies,
- update the package version
cargo tomlfmt ; cargo fmt ;
rm Cargo.lock ; cargo update ; cargo update --locked ; cargo upgrade --verbose ;
cargo clippy --fix --bin "quicssh-rs" ;
cargo wizard apply fast-compile dev ; cargo wizard apply fast-runtime release ;
cargo udeps --all-targets ;
cargo msrv list ;
cargo bump -g -p devThe change set (patch) is rather large because it resorts Cargo.lock, but the actual code changes are very minor.
Cargo.toml | 48 ++++++++++++++++++++++++++++++++++--------------
rust-toolchain.toml | 3 +++
src/client.rs | 22 ++++++++++------------
src/server.rs | 4 ++--
4 files changed, 49 insertions(+), 28 deletions(-)
Metadata
Metadata
Assignees
Labels
No labels