16 lines
302 B
Rust
16 lines
302 B
Rust
#![deny(
|
|
clippy::unwrap_used,
|
|
clippy::nursery,
|
|
clippy::perf,
|
|
clippy::pedantic,
|
|
clippy::complexity
|
|
)]
|
|
#![allow(
|
|
clippy::cast_possible_truncation,
|
|
clippy::missing_panics_doc,
|
|
clippy::missing_errors_doc,
|
|
clippy::match_wildcard_for_single_variants
|
|
)]
|
|
|
|
pub mod emulator;
|