From 1aaab98f258ad5b6b384460ca1e86d44e4bb05a7 Mon Sep 17 00:00:00 2001 From: Brian Hardock Date: Mon, 20 Apr 2026 14:26:15 -0600 Subject: [PATCH] Drop wasip3 git ref Signed-off-by: Brian Hardock --- Cargo.lock | 3 ++- crates/spin-sdk/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f0763bf..4618a68 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2722,7 +2722,8 @@ dependencies = [ [[package]] name = "wasip3" version = "0.6.0+wasi-0.3.0-rc-2026-03-15" -source = "git+https://github.com/bytecodealliance/wasi-rs#660ee064e2ce7fa2de480cddbf0ab426520447fa" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed83456dd6a0b8581998c0365e4651fa2997e5093b49243b7f35391afaa7a3d9" dependencies = [ "bytes", "http", diff --git a/crates/spin-sdk/Cargo.toml b/crates/spin-sdk/Cargo.toml index 6ff13e4..5d98251 100644 --- a/crates/spin-sdk/Cargo.toml +++ b/crates/spin-sdk/Cargo.toml @@ -41,7 +41,7 @@ spin-macro = { version = "6.0.0", path = "../spin-sdk-macro" } anyhow = "1" futures = "0.3.31" thiserror = "2.0.17" -wasip3 = { version = "0.6.0", git = "https://github.com/bytecodealliance/wasi-rs", features = ["http-compat", "wit-bindgen-macros"] } +wasip3 = { version = "0.6.0", features = ["http-compat", "wit-bindgen-macros"] } # http bytes = { version = "1.11.1", optional = true }