From 6864ef286f1562928f70c89a2bfaf86748df5bd4 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Tue, 26 Jan 2021 22:16:08 +0000 Subject: [PATCH] remove redundant #![feature...] Updated nightly, now this is stable, yay! Signed-off-by: Ian Jackson --- README.md | 2 +- src/lib.rs | 2 -- zcoord/zcoord.rs | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 77c05a45..9417b60e 100644 --- a/README.md +++ b/README.md @@ -149,7 +149,7 @@ Setup you run this is missing some pieces. The following is known to work (with otter from the time of writing): ``` - rustup default nightly-2020-11-09 + rustup default nightly-2021-01-26 ``` 4. Install the `usvg` SVG launderer, which we need for shape libraries diff --git a/src/lib.rs b/src/lib.rs index de6136ce..9da9f364 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,8 +2,6 @@ // SPDX-License-Identifier: AGPL-3.0-or-later // There is NO WARRANTY. -#![feature(slice_strip)] - #![allow(clippy::redundant_closure_call)] pub mod accounts; diff --git a/zcoord/zcoord.rs b/zcoord/zcoord.rs index 54e4ce46..b970585c 100644 --- a/zcoord/zcoord.rs +++ b/zcoord/zcoord.rs @@ -63,8 +63,6 @@ // limb by 1, with borrow, then add two limbs vvvvvvvvvv, and // redo. -#![feature(slice_strip)] - use std::cmp::{max, Ordering}; use std::convert::{TryFrom, TryInto}; use std::fmt::{self, Debug, Display, Formatter}; -- 2.30.2