revm_rwasm_bytecode/
lib.rs1#![cfg_attr(not(test), warn(unused_crate_dependencies))]
7#![cfg_attr(not(feature = "std"), no_std)]
8
9#[cfg(not(feature = "std"))]
10extern crate alloc as std;
11
12pub mod bytecode;
13mod decode_errors;
14pub mod eip7702;
16mod iter;
18pub mod legacy;
20pub mod opcode;
21pub mod utils;
22
23pub mod ownable_account;
25pub mod rwasm;
27pub mod metadata;
29
30pub use bitvec;
32pub use bytecode::Bytecode;
33pub use decode_errors::BytecodeDecodeError;
34pub use iter::BytecodeIterator;
35pub use legacy::{JumpTable, LegacyAnalyzedBytecode, LegacyRawBytecode};
36pub use opcode::OpCode;