From a6c920e88e0182e5a316dd12c73fe120f3d7062b Mon Sep 17 00:00:00 2001 From: Marc Brinkmann Date: Sun, 1 Jul 2018 18:09:21 +0200 Subject: [PATCH] Remove unused feature, allowing compilation on stable again. There is no evidence that [optin_builtin_traits](https://doc.rust-lang.org/beta/unstable-book/language-features/optin-builtin-traits.html) are used any longer (the keyword `auto` does not even show up in the codebase). Removing this features allow compilation on stable Rust 1.27 and possible earlier versions. --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 6b263f8..d5e6fc5 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -89,7 +89,6 @@ //! If `serialization-protobuf` is enabled, the message types support serialization with [Google //! protocol buffers](https://developers.google.com/protocol-buffers/docs/overview). -#![feature(optin_builtin_traits)] // TODO: Remove this once https://github.com/rust-lang-nursery/error-chain/issues/245 is resolved. #![allow(renamed_and_removed_lints)]