Issue 3223: Second phase of migration to Rust Edition
Reformat via `cargo fmt`
This commit is contained in:
@@ -24,7 +24,7 @@ use crate::machine::machine_state::*;
|
||||
use crate::machine::partial_string::*;
|
||||
use crate::machine::stack::*;
|
||||
use crate::machine::streams::*;
|
||||
use crate::machine::{get_structure_index, Machine};
|
||||
use crate::machine::{Machine, get_structure_index};
|
||||
use crate::parser::ast::*;
|
||||
use crate::parser::char_reader::*;
|
||||
use crate::parser::dashu::Integer;
|
||||
@@ -48,7 +48,7 @@ use std::ffi::CString;
|
||||
use std::fs;
|
||||
use std::hash::{BuildHasher, BuildHasherDefault};
|
||||
use std::io::{ErrorKind, Read, Write};
|
||||
use std::iter::{once, FromIterator};
|
||||
use std::iter::{FromIterator, once};
|
||||
use std::mem;
|
||||
#[cfg(feature = "http")]
|
||||
use std::net::{SocketAddr, ToSocketAddrs};
|
||||
@@ -63,13 +63,13 @@ use std::sync::LazyLock;
|
||||
use std::sync::{Arc, Condvar, Mutex};
|
||||
use tokio::sync::Notify;
|
||||
|
||||
use chrono::{offset::Local, DateTime};
|
||||
use chrono::{DateTime, offset::Local};
|
||||
#[cfg(not(target_arch = "wasm32"))]
|
||||
use cpu_time::ProcessTime;
|
||||
use std::time::{Duration, SystemTime};
|
||||
|
||||
#[cfg(feature = "repl")]
|
||||
use crate::read::user_interaction::{get_key, KeyCode, KeyModifiers};
|
||||
use crate::read::user_interaction::{KeyCode, KeyModifiers, get_key};
|
||||
|
||||
use blake2::{Blake2b512, Blake2s256};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user