chiark / gitweb /
remove redundant #![feature...]
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Tue, 26 Jan 2021 22:16:08 +0000 (22:16 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Tue, 26 Jan 2021 22:21:58 +0000 (22:21 +0000)
Updated nightly, now this is stable, yay!

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
README.md
src/lib.rs
zcoord/zcoord.rs

index 77c05a451564625ca2b655b29ed2ad21dfd3e710..9417b60ef6ea1b7921811eb7229cee7d69f954b3 100644 (file)
--- 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
index de6136ce1dd7ea4a65e96a966a6134d5ea8eaf87..9da9f364e6f4f7e6ee2f6c39f10b0020df0d02e0 100644 (file)
@@ -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;
index 54e4ce46aefad287ecaa3fb355c63d497c430bd2..b970585c78194e08a846e22a37c9769fd8e46dd3 100644 (file)
@@ -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};