You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
0.14.8 (2026-05-11)
Enhancements
[FEATURE][rust] Surfaced concurrent as a top-level miden-client feature, independent of std. wasm32 consumers using default-features = false (notably the @miden-sdk/miden-sdk MT WASM bundle and the new miden-mobile-prover native plugin for iOS/Android wallets) can now opt into rayon-parallel proving via miden-tx/concurrent + miden-prover/concurrent without also pulling in the miden-client/std deps (dep:tokio, dep:tempfile, tonic's transport/tls-* features). Native std-using consumers get this transitively through std; the duplication in the std feature list is intentional so each consumer can pick the smallest feature set they need. Note that miden-tx's own concurrent feature is defined upstream as ["miden-prover/concurrent", "std"], so this does activate std on the protocol crates (miden-tx, miden-prover, miden-protocol) — that std is unavoidable for parallel proving and is cheap on wasm32 (#2169).