remove unnecessary "extern crate" declarations

Signed-off-by: Filip Schauer <f.schauer@proxmox.com>
This commit is contained in:
Filip Schauer 2024-04-09 14:14:17 +02:00 committed by Wolfgang Bumiller
parent 329e95d8d1
commit 4f66246a91
2 changed files with 0 additions and 10 deletions

View File

@ -1,10 +1,3 @@
extern crate anyhow;
extern crate clap;
extern crate proxmox_backup_qemu;
extern crate proxmox_io;
extern crate proxmox_sys;
extern crate scopeguard;
use std::env;
use std::ffi::{c_char, CStr, CString};
use std::ptr;

View File

@ -1,6 +1,3 @@
extern crate anyhow;
extern crate md5;
use std::collections::HashMap;
use std::fs::File;
use std::io::{Read, Seek, SeekFrom};