Use fs-err in more crates (#100)

Closes https://github.com/astral-sh/puffin/issues/88.
This commit is contained in:
Charlie Marsh
2023-10-16 09:37:58 -04:00
committed by GitHub
parent fa2fd14587
commit 7e8ffeb2df
13 changed files with 33 additions and 14 deletions
+2 -1
View File
@@ -2,8 +2,9 @@
use std::path::{Path, PathBuf};
use std::process::{Command, Stdio};
use std::{fmt, fs, io};
use std::{fmt, io};
use fs_err as fs;
use goblin::elf::Elf;
use platform_info::{PlatformInfo, PlatformInfoAPI, UNameAPI};
use regex::Regex;