File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
crates/wasmtime/src/runtime Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -833,7 +833,8 @@ impl Component {
833833 & self . inner . realloc_func_type
834834 }
835835
836- #[ allow( unused) ]
836+ #[ allow( unused, reason = "used only for verification with wasmtime `rr` feature \
837+ and requires a lot of unnecessary gating across crates") ]
837838 pub ( crate ) fn checksum ( & self ) -> & [ u8 ; 32 ] {
838839 & self . inner . checksum
839840 }
Original file line number Diff line number Diff line change 77//!
88//! This module does NOT support RR for component builtins yet.
99
10- #[ cfg( all( feature = "rr" , feature = "component-model-async" ) ) ]
11- compile_error ! ( "Support for `rr` not available with `component-model-async`" ) ;
12-
1310use crate :: config:: { ModuleVersionStrategy , RecordSettings , ReplaySettings } ;
1411use crate :: prelude:: * ;
1512use core:: fmt;
You can’t perform that action at this time.
0 commit comments