v0.2.12-pre.008-fix.001

This commit is contained in:
2026-08-27 14:46:41 +02:00
parent f1e365ec97
commit fe46cbe3bd
8 changed files with 125 additions and 15 deletions

View File

@@ -1,5 +1,5 @@
<!-- file: docs/validation/015-V0_2_12_SOL_PRICES_DESK.md -->
<!-- version: 13 -->
<!-- version: 14 -->
# Validation `0.2.12` — SOL Prices Desk + intégration Wallet Desk
@@ -603,3 +603,37 @@ TypeScript syntax transpile Wallet main.ts PASS
cargo fmt/check/clippy/test NOT RUN — cargo indisponible dans le sandbox
```
## 25. Gate `0.2.12-pre.008-fix.001` — correction compilation des canaris
Le premier gate opérateur de `pre.008` a produit les résultats suivants :
```text
cargo fmt --all FAIL — littéraux Rust invalides dans desktop_contract.rs
python3 scripts/audit_rust_workspace_rules.py PASS
python3 scripts/audit_markdown_tables.py README.md ... deltas PASS
cargo check --workspace PASS
cargo clippy --workspace --all-targets FAIL — desktop_contract.rs + manual_is_multiple_of
```
Le correctif attendu est strictement mécanique :
```text
desktop_contract.rs raw strings Rust valides
wallet_balance.rs coefficient.is_multiple_of(10)
version 0.2.12-pre.8.fix.1
logique moyenne / Off-chain / DTO / frontend inchangée
```
Gate opérateur à rejouer après application :
```bash
cargo fmt --all
python3 scripts/audit_rust_workspace_rules.py
python3 scripts/audit_markdown_tables.py README.md RULES.md ROADMAP.md CHANGELOG.md docs prompts crates deltas/0.2.12
cargo check --workspace
cargo clippy --workspace --all-targets
cargo test -p ksp-app-wallet-desk
cargo test --workspace
(cd crates/ksp-app-wallet-desk && cargo tauri dev)
```