//! wp-evm-v4-core — pure computation for v4-family DEXes.
//!
//! Modules:
//! - `data` — pure records (PoolState, Quote, ProtocolConfig, etc.)
//! - `quote` — pure swap-math delegation for hookless pools
//! - `plan` — pure calldata-encoding functions
//! - `v4_planner` — native V4 action sequencer (replaces the
//! `uniswap-v4-sdk` `V4Planner`; see R17-pre Slice B)
//! - `hook_options` — native V4 hook permission decoder
//! (replaces `uniswap_v4_sdk::utils::hook`; see R17-pre Slice D)
//!
//! Zero async dependencies. Consumers that need chain I/O should depend on
//! `wp-evm-v4-provider`, which re-exports all of this crate's public API.