1
2
3
4
5
6
7
8
9
10
11
12
//! Analysis tools from the Ethereum Toolkit.
//!
//! Highly unstable and incomplete.

#![deny(unsafe_code)]
// TODO: #![deny(missing_docs)]
// TODO: #![deny(unreachable_pub)]
#![deny(missing_debug_implementations)]

mod blocks;
pub mod cfg;
mod sym;