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 ownable_account;
23pub mod rwasm;
25pub mod utils;
26
27pub use bitvec;
29pub use bytecode::Bytecode;
30pub use decode_errors::BytecodeDecodeError;
31pub use iter::BytecodeIterator;
32pub use legacy::{JumpTable, LegacyAnalyzedBytecode, LegacyRawBytecode};
33pub use opcode::OpCode;