Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
5 changes: 5 additions & 0 deletions rib-repl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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::*;
Expand Down
Loading