zint/lib.rs
1//! Zink testing framework.
2#![deny(missing_docs)]
3
4mod bytes;
5mod contract;
6mod evm;
7mod lookup;
8
9pub use self::{
10 bytes::Bytes32,
11 contract::Contract,
12 evm::{Info, EVM},
13};
14pub use hex;
15pub use revm::primitives::{HaltReason, OutOfGasError, U256};
16pub use tracing as log;
17pub use zabi::selector::keccak256;
18
19/// Set up the logger.
20pub fn setup_logger() {
21 tracing_subscriber::fmt()
22 .with_env_filter(tracing_subscriber::EnvFilter::from_default_env())
23 .without_time()
24 .compact()
25 .try_init()
26 .ok();
27}