File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -46,6 +46,12 @@ then all of the other crates can be installed with `cargo binstall`.
4646cargo binstall just cargo-llvm-cov cargo-nextest cargo-insta cargo-hakari miniserve taplo
4747```
4848
49+ Note that for ` cargo-sync-rdme ` we use Troy's custom fork:
50+
51+ ``` bash
52+ cargo binstall cargo-sync-rdme --git https://github.com/TroyKomodo/cargo-sync-rdme.git --force -y
53+ ```
54+
4955</details >
5056
5157### FFmpeg
Original file line number Diff line number Diff line change @@ -48,12 +48,20 @@ impl DevTools {
4848 "cargo-insta" ,
4949 "cargo-hakari" ,
5050 "miniserve" ,
51+ "taplo" ,
5152 ] ;
5253
5354 for package in BINSTALL_PACKAGES {
5455 debug_command ( std:: process:: Command :: new ( "cargo" ) . arg ( "binstall" ) . arg ( package) ) ;
5556 }
5657
58+ // special case for cargo-sync-rdme
59+ debug_command ( std:: process:: Command :: new ( "cargo" )
60+ . arg ( "binstall" )
61+ . arg ( "cargo-sync-rdme" )
62+ . arg ( "--git=https://github.com/TroyKomodo/cargo-sync-rdme.git" )
63+ . arg ( "--force=-y" ) ) ;
64+
5765 println ! ( "Installation complete" ) ;
5866
5967 Ok ( ( ) )
You can’t perform that action at this time.
0 commit comments