clippy refactoring

This commit is contained in:
Lukáš Hozda
2017-10-02 23:44:45 +02:00
parent 92465e899e
commit a1e92d006c
5 changed files with 184 additions and 204 deletions

View File

@@ -1,5 +1,12 @@
//! Rhai - embedded scripting for Rust
// lints required by Rhai
#![allow(unknown_lints,
type_complexity,
new_without_default_derive,
needless_pass_by_value,
too_many_arguments)]
mod engine;
mod fn_register;
mod parser;