@zackees/soldr 0.7.51 → 0.7.53
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +13 -4
- package/contracts/zccache-runtime.v1.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,11 +4,9 @@
|
|
|
4
4
|
<img width="1536" height="1024" alt="ChatGPT Image Apr 19, 2026, 09_43_32 PM" src="https://github.com/user-attachments/assets/87d94693-3542-4f4f-8b02-600bf0b9810e" />
|
|
5
5
|
|
|
6
6
|
|
|
7
|
-
*A tool to download rust tool sets and aggressive cache your build.
|
|
7
|
+
*A tool to download rust tool sets and aggressive cache your build. **2× faster cross-PR builds** via content-addressed caching that swatinem's per-key cache cannot share. GH and local builds. Just add soldr before all your build commands.*
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Rendered benchmarks: [zackees.github.io/soldr](https://zackees.github.io/soldr/)
|
|
9
|
+
Third-party comparison (soldr vs Swatinem/rust-cache vs ...): published from `zackees/setup-soldr` — see its `comparison-cluster` workflow and the rendered page once the migration in soldr#674 completes. The legacy `https://zackees.github.io/soldr/` page is being repurposed for soldr-internal per-scenario regression history (no third-party comparison surface lives on this repo anymore).
|
|
12
10
|
|
|
13
11
|
[](https://github.com/zackees/soldr/actions/workflows/build-linux-x64.yml)
|
|
14
12
|
[](https://github.com/zackees/soldr/actions/workflows/build-linux-arm64.yml)
|
|
@@ -179,6 +177,17 @@ soldr purge
|
|
|
179
177
|
SOLDR_RUSTC_WRAPPER=sccache soldr cargo build
|
|
180
178
|
SOLDR_RUSTC_WRAPPER=none soldr cargo build
|
|
181
179
|
|
|
180
|
+
# Shorthand: drop the `cargo` prefix for cargo's built-in verbs and for
|
|
181
|
+
# any cargo subcommand soldr already prebuilds. `soldr cargo <verb>` is
|
|
182
|
+
# preserved as the explicit escape hatch (always works), and the
|
|
183
|
+
# collision verbs `clean`, `config`, and `version` keep their
|
|
184
|
+
# soldr-native meaning. See docs/API.md "Cargo Verb Shorthand" for the
|
|
185
|
+
# full list.
|
|
186
|
+
soldr build --release # == soldr cargo build --release
|
|
187
|
+
soldr test --workspace # == soldr cargo test --workspace
|
|
188
|
+
soldr clippy -- -D warnings # == soldr cargo clippy -- -D warnings
|
|
189
|
+
soldr nextest run # == soldr cargo nextest run
|
|
190
|
+
|
|
182
191
|
# Fetch and run any Rust tool instantly:
|
|
183
192
|
soldr maturin build --release
|
|
184
193
|
soldr cargo-dylint check
|