1#![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 use bitvec;
25pub use bytecode::Bytecode;
26pub use decode_errors::BytecodeDecodeError;
27pub use iter::BytecodeIterator;
28pub use legacy::{JumpTable, LegacyAnalyzedBytecode, LegacyRawBytecode};
29pub use opcode::OpCode;