From 57d7aee11347581445ae0d6035a8dde6984c2611 Mon Sep 17 00:00:00 2001 From: Nikola Pajkovsky Date: Thu, 2 Apr 2020 12:23:09 +0200 Subject: [PATCH] drop feature option_flattening rust nightly yells warning: the feature `option_flattening` has been stable since 1.40.0 and no longer requires an attribute to enable and it's not even possible compile source code with stable rust. If option_flattening is dropped, it now compiles with stable and nightly rust. Signed-off-by: Nikola Pajkovsky --- src/lib.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 30fe3cc..787ab1f 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,4 @@ #![forbid(unsafe_code)] -#![feature(option_flattening)] #![warn( //clippy::pedantic, clippy::nursery,