Skip to content
Closed
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: 2 additions & 0 deletions impl/rs/src/reader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ mod op;
mod region;
mod string_table;
pub mod value;
pub mod verify;

pub mod optype;

Expand All @@ -17,6 +18,7 @@ pub use metadata::{HasMetadata, Metadata};
pub use module::Module;
pub use op::Operation;
pub use region::Region;
pub use verify::{verify, verify_module, VerificationError};

use derive_more::derive::{Display, Error, From};

Expand Down
Loading