cargo-fix
This commit is contained in:
parent
2d7626317d
commit
c2263099aa
|
@ -4,7 +4,7 @@ use std::fs::File;
|
||||||
use std::io::Write;
|
use std::io::Write;
|
||||||
use std::os::unix::fs::PermissionsExt;
|
use std::os::unix::fs::PermissionsExt;
|
||||||
use std::path::PathBuf;
|
use std::path::PathBuf;
|
||||||
use std::process::{Child, Command, Output};
|
use std::process::{Child, Command};
|
||||||
use log::debug;
|
use log::debug;
|
||||||
use crate::dirs::get_data_dir;
|
use crate::dirs::get_data_dir;
|
||||||
use crate::util::sha256;
|
use crate::util::sha256;
|
||||||
|
|
|
@ -25,9 +25,9 @@ pub mod nebula_cert_bin {
|
||||||
include!(concat!(env!("OUT_DIR"), "/nebula_cert.bin.rs"));
|
include!(concat!(env!("OUT_DIR"), "/nebula_cert.bin.rs"));
|
||||||
}
|
}
|
||||||
|
|
||||||
use std::error::Error;
|
|
||||||
use std::fs;
|
use std::fs;
|
||||||
use std::process::Child;
|
|
||||||
use clap::{Parser, ArgAction, Subcommand};
|
use clap::{Parser, ArgAction, Subcommand};
|
||||||
use log::{error, info};
|
use log::{error, info};
|
||||||
use simple_logger::SimpleLogger;
|
use simple_logger::SimpleLogger;
|
||||||
|
|
Loading…
Reference in New Issue