commit | 942bd8403b0b5ece17cfd5df46118cfa39386808 | [log] [tgz] |
---|---|---|
author | Danny Browning <danny.browning@protectwise.com> | Wed Aug 21 13:41:07 2019 -0600 |
committer | Danny Browning <danny.browning@protectwise.com> | Fri Sep 06 10:28:24 2019 -0600 |
tree | d6c0ac3f84862011de3e799799e1e45b08c8ac5e | |
parent | a715f701bf4850b41b7f3fa016d16a9153319e1e [diff] [blame] |
Bare Trait Warnings Fixes bare trait (dyn) warnings in the library as well as generated code.
diff --git a/lib/rs/src/lib.rs b/lib/rs/src/lib.rs index a36ec99..cdd60f0 100644 --- a/lib/rs/src/lib.rs +++ b/lib/rs/src/lib.rs
@@ -47,6 +47,7 @@ #![crate_type = "lib"] #![doc(test(attr(allow(unused_variables), deny(warnings))))] +#![deny(bare_trait_objects)] extern crate byteorder; extern crate ordered_float;