Lightweight Ethereum JSON RPC Mock written in Rust
ethock_lib = "x.x.x"
fn main() {
// Serve in blocking mode
ethock_lib::server::Entry::new("localhost:8545").serve();
// Serve in non-blocking mode
ethock_lib::server::Entry::new("localhost:8545").serve_silent();
}