Skip to content

Commit

Permalink
no longer re-export unused traits from wasmi_core
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbepop committed Jan 8, 2023
1 parent f4aabf3 commit a08420c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion crates/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,17 +26,20 @@ extern crate std as alloc;

use self::value::{
ArithmeticOps,
ExtendInto,
Float,
Integer,
LittleEndianConvert,
SignExtendFrom,
TruncateSaturateInto,
TryTruncateInto,
WrapInto,
};
pub use self::{
host_error::HostError,
nan_preserving_float::{F32, F64},
trap::{Trap, TrapCode},
units::Pages,
untyped::{DecodeUntypedSlice, EncodeUntypedSlice, UntypedError, UntypedValue},
value::{ExtendInto, LittleEndianConvert, TryFromValueError, Value, ValueType, WrapInto},
value::{TryFromValueError, Value, ValueType},
};

0 comments on commit a08420c

Please sign in to comment.