diff --git a/crates/dagger-rust/src/htmx.rs b/crates/dagger-rust/src/htmx.rs index 87d3a7d..7ef182c 100644 --- a/crates/dagger-rust/src/htmx.rs +++ b/crates/dagger-rust/src/htmx.rs @@ -49,6 +49,11 @@ impl HtmxBuild { .with_exec(vec!["wget", "https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz"]) .with_exec("tar -xvf cargo-binstall-x86_64-unknown-linux-musl.tgz".split_whitespace().collect()) .with_exec("mv cargo-binstall /usr/local/cargo/bin".split_whitespace().collect()) + + .with_exec(vec!["wget", "https://github.com/rui314/mold/releases/latest/download/mold-2.3.3-x86_64-linux.tar.gz"]) + .with_exec("tar -xvf mold-2.3.3-x86_64-linux.tar.gz".split_whitespace().collect()) + .with_exec("mv mold /usr/bin/mold".split_whitespace().collect()) + .with_exec(vec!["cargo", "binstall", "sqlx-cli", "-y"]); let target_cache = self