@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 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. Instant warm compiles. Gh and local builds. Just add soldr before all your build commands*
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
- [![Latest soldr benchmark stats](https://raw.githubusercontent.com/zackees/soldr/benchmark-stats/benchmark.jpg)](https://zackees.github.io/soldr/)
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
  [![Linux x64](https://github.com/zackees/soldr/actions/workflows/build-linux-x64.yml/badge.svg?branch=main)](https://github.com/zackees/soldr/actions/workflows/build-linux-x64.yml)
14
12
  [![Linux ARM64](https://github.com/zackees/soldr/actions/workflows/build-linux-arm64.yml/badge.svg?branch=main)](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
@@ -18,7 +18,7 @@
18
18
  "linux_zccache_target_libc": "musl"
19
19
  },
20
20
  "zccache": {
21
- "managed_version": "1.11.8",
21
+ "managed_version": "1.11.18",
22
22
  "local_dir_env": "SOLDR_ZCCACHE_LOCAL_DIR",
23
23
  "cache_dir_env": "ZCCACHE_CACHE_DIR",
24
24
  "required_binaries": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zackees/soldr",
3
- "version": "0.7.51",
3
+ "version": "0.7.53",
4
4
  "description": "Instant Rust tools and builds from one command.",
5
5
  "license": "BSD-3-Clause",
6
6
  "homepage": "https://github.com/zackees/soldr",