From a0f5bc4e41cdc44c819eb82292501c7682f7d95e Mon Sep 17 00:00:00 2001 From: Afsal Thaj Date: Wed, 8 Apr 2026 08:27:26 +1000 Subject: [PATCH] update wasm wave dependency to match wasmtime --- Cargo.toml | 2 +- rib-repl/src/lib.rs | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8dc2d56..cd50f1e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,4 +32,4 @@ test-r = { version = "3.0.3", default-features = true } tokio = { version = "1.44", features = ["macros", "rt-multi-thread", "sync", "io-std", "net", "tracing", "process"] } tracing = { version = "0.1.41", features = ["log"] } uuid = { version = "1.15.1", features = ["serde", "v4", "v5", "v7"] } -wasm-wave = "0.244" +wasm-wave = "0.245.0" diff --git a/rib-repl/src/lib.rs b/rib-repl/src/lib.rs index aba9d14..7d0e77d 100644 --- a/rib-repl/src/lib.rs +++ b/rib-repl/src/lib.rs @@ -14,6 +14,11 @@ #![allow(clippy::large_enum_variant)] +// Re-exported for embedders (e.g. Wasmtime CLI) that implement Rib traits without +// adding their own `anyhow` / `uuid` dependency edges. +pub use anyhow; +pub use uuid; + pub use command::*; pub use dependency_manager::*; pub use invoke::*;