Skip to content

Commit 80f4173

Browse files
committed
update setup docs for taplo and cargo-sync-rdme
1 parent a630bb6 commit 80f4173

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

CONTRIBUTING.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,12 @@ then all of the other crates can be installed with `cargo binstall`.
4646
cargo 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

dev-tools/xtask/src/cmd/dev_tools.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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(())

0 commit comments

Comments
 (0)