Update to current rust

This commit is contained in:
Greg Shuflin
2021-10-07 00:51:45 -07:00
parent a0955e07dc
commit 77bf42be6c
9 changed files with 350 additions and 364 deletions

View File

@@ -7,7 +7,7 @@ edition = "2018"
[dependencies]
llvm-sys = "70.0.2"
take_mut = "0.2.2"
itertools = "0.5.8"
itertools = "0.10"
getopts = "0.2.18"
lazy_static = "0.2.8"
maplit = "*"

View File

@@ -1,5 +1,4 @@
#![feature(link_args)]
#![feature(slice_patterns, box_patterns, box_syntax, proc_macro_hygiene, decl_macro)]
#![feature(box_patterns, box_syntax, proc_macro_hygiene, decl_macro)]
#![feature(plugin)]
extern crate getopts;
extern crate linefeed;

View File

@@ -1,7 +1,6 @@
use super::{Repl, InterpreterDirectiveOutput};
use crate::repl::help::help;
use crate::language::{LangMetaRequest, LangMetaResponse, DebugAsk, DebugResponse};
use itertools::Itertools;
use std::fmt::Write as FmtWrite;
#[derive(Debug, Clone)]