Undo enabling the `unreachable-pub` lint.
authorMarcin Mielniczuk <marmistrz.dev@zoho.eu>
Thu, 28 Jun 2018 17:29:37 +0200
changeset 13430 eb91b889101b
parent 13429 4c5ed27b1ff8
child 13431 6a818f9192f4
Undo enabling the `unreachable-pub` lint. It appears that nom cannot correctly handle `pub(crate)`, so the warnings cannot be fixed at the moment. See https://github.com/Geal/nom/issues/807
gameServer2/src/main.rs
--- a/gameServer2/src/main.rs	Thu Jun 28 00:10:15 2018 +0300
+++ b/gameServer2/src/main.rs	Thu Jun 28 17:29:37 2018 +0200
@@ -1,6 +1,5 @@
 #![allow(unused_imports)]
 #![deny(bare_trait_objects)]
-#![warn(unreachable_pub)]
 
 extern crate rand;
 extern crate mio;