1
Fork 0

Move/rename lazy::{OnceCell, Lazy} to cell::{OnceCell, LazyCell}

This commit is contained in:
Maybe Waffle 2022-06-16 19:41:40 +04:00
parent 392d272868
commit 7c360dc117
11 changed files with 407 additions and 400 deletions

View file

@ -38,11 +38,11 @@ use regex::Regex;
use tempfile::Builder as TempFileBuilder;
use std::borrow::Borrow;
use std::cell::OnceCell;
use std::collections::BTreeSet;
use std::ffi::OsString;
use std::fs::{File, OpenOptions};
use std::io::{BufWriter, Write};
use std::lazy::OnceCell;
use std::ops::Deref;
use std::path::{Path, PathBuf};
use std::process::{ExitStatus, Output, Stdio};