Rust 2018

This commit is contained in:
timfish
2019-09-18 11:21:07 +01:00
parent b92ed6201e
commit 82fd20b2b1
41 changed files with 533 additions and 490 deletions

View File

@@ -30,9 +30,7 @@
//!
//! [Check out the README on GitHub for more information!](https://github.com/jonathandturner/rhai)
// lints required by Rhai
#![allow(warnings, unknown_lints, type_complexity, new_without_default_derive,
needless_pass_by_value, too_many_arguments)]
#![allow(non_snake_case)]
// needs to be here, because order matters for macros
macro_rules! debug_println {
@@ -50,4 +48,3 @@ mod parser;
pub use any::Any;
pub use engine::{Engine, EvalAltResult, Scope};
pub use fn_register::RegisterFn;