cleanup: avoid use anyhow::*

Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
This commit is contained in:
Dietmar Maurer 2021-11-28 12:50:21 +01:00
parent 0bb298b262
commit 248e888ae7
3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
use anyhow::*;
use anyhow::{format_err, Error};
use serde_json::Value;
use std::cell::RefCell;
use std::sync::Arc;

View File

@ -8,7 +8,7 @@ use std::str::FromStr;
use std::sync::RwLock;
use std::time::Instant;
use anyhow::*;
use anyhow::{bail, format_err, Error};
use lazy_static::lazy_static;
use nix::unistd::Pid;

View File

@ -2,7 +2,7 @@ use std::io::{self, Read, Write};
use std::mem::MaybeUninit;
use std::os::unix::io::AsRawFd;
use anyhow::*;
use anyhow::{bail, format_err, Error};
use nix::fcntl::OFlag;
use nix::sys::stat::Mode;