PkmnLib_rs/src/lib.rs

20 lines
431 B
Rust
Raw Normal View History

// The too many arguments is annoying, especially for when we create constructors, disable.
#![allow(clippy::too_many_arguments, clippy::needless_range_loop)]
2022-06-03 14:35:18 +00:00
#![feature(test)]
#![feature(bench_black_box)]
#![feature(let_chains)]
#[macro_use]
extern crate maplit;
2022-06-03 14:35:18 +00:00
#[cfg(feature = "c_interface")]
#[macro_use]
extern crate lazy_static;
mod c_interface;
pub mod defines;
pub mod dynamic_data;
pub mod static_data;
pub mod utils;