Skip to content

Commit 682a3e4

Browse files
committed
Re-export component and module instance ids through rr
1 parent 498af08 commit 682a3e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,6 @@ members = [
166166
"crates/wizer/tests/regex-test",
167167
"crates/wizer/benches/regex-bench",
168168
"crates/wizer/benches/uap-bench",
169-
"crates/rr",
170169
"examples/fib-debug/wasm",
171170
"examples/wasm",
172171
"examples/tokio/wasm",

crates/rr/src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,10 @@ pub(crate) mod prelude {
99
use crate::prelude::*;
1010
pub use core::fmt;
1111
pub use events::{
12-
EventError, RRFuncArgVals, ResultEvent, Validate, common_events, component_events, core_events,
12+
EventError, RRFuncArgVals, ResultEvent, Validate, common_events,
13+
component_events::{self, RRComponentInstanceId},
14+
core_events::{self, RRModuleInstanceId},
1315
};
14-
use events::{component_events::RRComponentInstanceId, core_events::RRModuleInstanceId};
1516
pub use io::{RecordWriter, ReplayReader, from_replay_reader, to_record_writer};
1617
// Export necessary environ types for interactions with the crate
1718
pub use wasmtime_environ::{

0 commit comments

Comments
 (0)