@zackees/soldr 0.7.52 → 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
@@ -177,6 +177,17 @@ soldr purge
177
177
  SOLDR_RUSTC_WRAPPER=sccache soldr cargo build
178
178
  SOLDR_RUSTC_WRAPPER=none soldr cargo build
179
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
+
180
191
  # Fetch and run any Rust tool instantly:
181
192
  soldr maturin build --release
182
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.14",
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.52",
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",