From 54ef27de26b2e41f3f0aac54e9258ff7feaf170b Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Thu, 5 Mar 2026 16:18:28 -0700 Subject: [PATCH] make `wit_dylib::metadata` public Previously, we only `pub use`d the `Metadata` type, but that's not terribly useful without making all the other `pub` types in that module visible, also. --- crates/wit-dylib/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/wit-dylib/src/lib.rs b/crates/wit-dylib/src/lib.rs index cf83f15923..d1d28915f1 100644 --- a/crates/wit-dylib/src/lib.rs +++ b/crates/wit-dylib/src/lib.rs @@ -15,7 +15,7 @@ use wit_parser::{ mod async_; mod bindgen; -mod metadata; +pub mod metadata; pub use crate::async_::AsyncFilterSet; pub use crate::metadata::Metadata;