cargo-switch

Crates.iocargo-switch
lib.rscargo-switch
version0.1.1
sourcesrc
created_at2024-05-21 02:38:50.860739
updated_at2024-05-21 02:54:03.925367
descriptionAllows installing several versions of the same Cargo binary crate and switching between them easily
homepage
repository
max_upload_size
id1246371
size16,370
Vinícius Miguel (vrmiguel)

documentation

README

cargo-switch 🦀🔃

cargo-switch allows you to install several versions of the same Cargo binary crate and switch between them easily.

Example

% cargo-switch list
sqlx-cli:
  - 0.6.3

% cargo-switch install sqlx-cli@0.7.2 
...

% cargo-switch list                              
sqlx-cli:
  - 0.6.3
  - 0.7.2

% cargo-switch sqlx-cli@0.6.3

% sqlx --version
sqlx-cli 0.6.3

% cargo-switch sqlx-cli@0.7.2

% sqlx --version             
sqlx-cli 0.7.2
Commit count: 0

cargo fmt