Fixes all clippy warnings
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-07-01 18:20:16 +02:00
parent 717fcdefda
commit 0d95dcf618
19 changed files with 108 additions and 55 deletions

View File

@@ -17,12 +17,21 @@ pub use static_data::StaticData;
#[doc(inline)]
pub use type_library::*;
/// The library data for abilities.
mod ability_library;
/// Basic helper trait for libraries.
mod data_library;
/// The library data for groth rates.
mod growth_rate_library;
/// The library data for items.
mod item_library;
/// The library data for misc settings.
mod library_settings;
/// The library data for moves.
mod move_library;
/// The library data for species.
mod species_library;
/// The combination of all libraries.
pub(crate) mod static_data;
/// The library data for types.
mod type_library;