Rust 1.85, edition=2024 (#15741)

This commit is contained in:
Jack Wright
2025-05-13 07:49:30 -07:00
committed by GitHub
parent 1a0986903f
commit c2ac8f730e
793 changed files with 4276 additions and 3687 deletions

View File

@ -1,17 +1,17 @@
use chrono::{DateTime, FixedOffset};
use nu_path::AbsolutePathBuf;
use nu_protocol::{ast::PathMember, engine::EngineState, record, Span, Value};
use nu_protocol::{Span, Value, ast::PathMember, engine::EngineState, record};
use nu_test_support::{
fs::{line_ending, Stub},
fs::{Stub, line_ending},
nu, pipeline,
playground::{Dirs, Playground},
};
use rand::{
Rng, SeedableRng,
distr::{Alphanumeric, SampleString, StandardUniform},
prelude::Distribution,
random_range,
rngs::StdRng,
Rng, SeedableRng,
};
use std::io::Write;