@xaidenlabs/uso 1.1.91 → 1.1.92

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xaidenlabs/uso",
3
- "version": "1.1.91",
3
+ "version": "1.1.92",
4
4
  "description": "Universal Solana Development Toolchain. Native or Stealth WSL Mode. Build, test, and deploy without the friction.",
5
5
  "bin": {
6
6
  "uso": "bin/index.js"
@@ -318,18 +318,9 @@ else
318
318
  fi
319
319
  source $HOME/.cargo/env 2>/dev/null || true
320
320
 
321
- # --- Solana SBPF Toolchain (required for anchor build) ---
322
- if ! rustup target list 2>/dev/null | grep -q "sbpf-solana-solana"; then
323
- echo "🎯 Installing Solana SBPF toolchain..."
324
- if run_with_progress "🎯 Installing Solana SBPF target..." 35 55 rustup target add sbpf-solana-solana; then
325
- echo "✅ SBPF target installed."
326
- else
327
- FAILURES="$FAILURES sbpf-target"
328
- echo "❌ SBPF target installation failed."
329
- fi
330
- else
331
- echo "✅ SBPF target already installed."
332
- fi
321
+ # --- Solana SBPF Toolchain ---
322
+ # The SBPF target is managed by Solana's custom rustc inside the Solana CLI.
323
+ echo " SBPF target is managed by Solana CLI."
333
324
 
334
325
  # Install cargo-build-sbf
335
326
  if ! command -v cargo-build-sbf &> /dev/null; then