@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 +11 -0
- package/contracts/zccache-runtime.v1.json +1 -1
- package/package.json +1 -1
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
|