@zackees/soldr 0.7.18 → 0.7.20

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,6 +6,8 @@
6
6
 
7
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*
8
8
 
9
+ [![Latest soldr benchmark stats](https://raw.githubusercontent.com/zackees/soldr/benchmark-stats/benchmark.jpg)](https://zackees.github.io/soldr/)
10
+
9
11
  Rendered benchmarks: [zackees.github.io/soldr](https://zackees.github.io/soldr/)
10
12
 
11
13
  [![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)
@@ -157,6 +159,7 @@ soldr rustfmt src/main.rs
157
159
  ```text
158
160
  soldr cargo build --release
159
161
  +-- resolve the real cargo binary
162
+ +-- on Windows, re-run from a soldr-owned runtime copy when needed
160
163
  +-- fetch/start managed zccache when cache is enabled
161
164
  +-- set soldr as the compiler wrapper for this build
162
165
  +-- have soldr wrapper mode delegate to managed zccache
@@ -203,6 +206,7 @@ If you also have many separate test binaries, consider consolidating them under
203
206
  - **Invisible caching**: `soldr cargo ...` uses a soldr-managed zccache by default, with `soldr --no-cache cargo ...` as the opt-out.
204
207
  - **Real cache controls**: `soldr status`, `soldr cache`, and `soldr clean` report and manage the soldr-managed zccache state, while `soldr purge` removes all Soldr-managed cache artifacts for bug clearing and benchmarking.
205
208
  - **One cache boundary**: soldr keeps its own tools, zccache session state, and managed zccache artifacts under `~/.soldr/` by default. Use `SOLDR_CACHE_DIR` to move that root.
209
+ - **Disposable-worktree friendly on Windows**: for build orchestration, soldr can relocate itself under `~/.soldr/runtime/soldr-self/` so `RUSTC_WRAPPER` does not keep using a worktree-local `soldr.exe`; stale runtime copies are cleaned up periodically.
206
210
  - **Pre-built first**: Download a pre-built binary before compiling from source. Fall back gracefully.
207
211
  - **Cargo-compatible**: soldr preserves normal cargo arguments instead of forcing a separate workflow.
208
212
  - **Cross-platform**: Linux, macOS, Windows (x86_64 + aarch64).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zackees/soldr",
3
- "version": "0.7.18",
3
+ "version": "0.7.20",
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",