forked from extern/nushell
udpate rust toolchain to rust 1.81.0 (#14473)
# Description With the release of rust 1.83.0 it's time to update to rust 1.81.0.
This commit is contained in:
@ -1,3 +1,5 @@
|
||||
#![allow(clippy::byte_char_slices)]
|
||||
|
||||
use crate::{
|
||||
lex, lite_parse,
|
||||
parser::{is_variable, parse_value},
|
||||
@ -7,7 +9,6 @@ use nu_protocol::{
|
||||
engine::StateWorkingSet,
|
||||
ParseError, Span, SyntaxShape, Type, VarId,
|
||||
};
|
||||
|
||||
pub fn garbage(span: Span) -> MatchPattern {
|
||||
MatchPattern {
|
||||
pattern: Pattern::Garbage,
|
||||
|
@ -1,3 +1,5 @@
|
||||
#![allow(clippy::byte_char_slices)]
|
||||
|
||||
use crate::{lex::lex_signature, parser::parse_value, trim_quotes, TokenContents};
|
||||
use nu_protocol::{engine::StateWorkingSet, ParseError, Span, SyntaxShape, Type};
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
#![allow(clippy::byte_char_slices)]
|
||||
|
||||
use crate::{
|
||||
lex::{is_assignment_operator, lex, lex_n_tokens, lex_signature, LexState},
|
||||
lite_parser::{lite_parse, LiteCommand, LitePipeline, LiteRedirection, LiteRedirectionTarget},
|
||||
|
Reference in New Issue
Block a user