mirror of
https://git.proxmox.com/git/pve-installer
synced 2025-04-28 12:51:31 +00:00
tui, common: run rustfmt
While at it, move rustfmt.toml to the repo root, to share it with the other crate. Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
This commit is contained in:
parent
c16d6893ec
commit
feea90d471
@ -365,4 +365,3 @@ impl Interface {
|
||||
format!("{} {}", self.state.render(), self.name)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,11 +1,11 @@
|
||||
use crate::SummaryOption;
|
||||
|
||||
use proxmox_installer_common::{
|
||||
setup::LocaleInfo,
|
||||
options::{
|
||||
BootdiskOptions, BtrfsRaidLevel, FsType, NetworkOptions, TimezoneOptions,
|
||||
PasswordOptions, ZfsRaidLevel,
|
||||
BootdiskOptions, BtrfsRaidLevel, FsType, NetworkOptions, PasswordOptions, TimezoneOptions,
|
||||
ZfsRaidLevel,
|
||||
},
|
||||
setup::LocaleInfo,
|
||||
};
|
||||
|
||||
pub const FS_TYPES: &[FsType] = {
|
||||
@ -70,13 +70,13 @@ mod tests {
|
||||
use super::*;
|
||||
use proxmox_installer_common::{
|
||||
setup::{
|
||||
Dns, Gateway, Interface, InterfaceState, IsoInfo, IsoLocations, NetworkInfo, ProductConfig,
|
||||
ProxmoxProduct, Routes, SetupInfo,
|
||||
Dns, Gateway, Interface, InterfaceState, IsoInfo, IsoLocations, NetworkInfo,
|
||||
ProductConfig, ProxmoxProduct, Routes, SetupInfo,
|
||||
},
|
||||
utils::{CidrAddress, Fqdn},
|
||||
};
|
||||
use std::{collections::HashMap, path::PathBuf};
|
||||
use std::net::{IpAddr, Ipv4Addr};
|
||||
use std::{collections::HashMap, path::PathBuf};
|
||||
|
||||
fn dummy_setup_info() -> SetupInfo {
|
||||
SetupInfo {
|
||||
|
@ -1,17 +1,13 @@
|
||||
use std::{
|
||||
collections::HashMap,
|
||||
fmt,
|
||||
net::IpAddr,
|
||||
};
|
||||
use std::{collections::HashMap, fmt, net::IpAddr};
|
||||
|
||||
use serde::{Serialize, Serializer};
|
||||
|
||||
use crate::options::InstallerOptions;
|
||||
use proxmox_installer_common::{
|
||||
options::{AdvancedBootdiskOptions, BtrfsRaidLevel, Disk, FsType, ZfsRaidLevel},
|
||||
setup::InstallZfsOption,
|
||||
utils::CidrAddress,
|
||||
};
|
||||
options::{AdvancedBootdiskOptions, BtrfsRaidLevel, Disk, FsType, ZfsRaidLevel},
|
||||
setup::InstallZfsOption,
|
||||
utils::CidrAddress,
|
||||
};
|
||||
|
||||
/// See Proxmox::Install::Config
|
||||
#[derive(Serialize)]
|
||||
|
@ -14,13 +14,15 @@ use crate::options::FS_TYPES;
|
||||
use crate::InstallerState;
|
||||
|
||||
use proxmox_installer_common::{
|
||||
disk_checks::{
|
||||
check_btrfs_raid_config, check_disks_4kn_legacy_boot, check_for_duplicate_disks,
|
||||
check_zfs_raid_config,
|
||||
},
|
||||
options::{
|
||||
AdvancedBootdiskOptions, BootdiskOptions, BtrfsBootdiskOptions, Disk,
|
||||
FsType, LvmBootdiskOptions, ZfsBootdiskOptions,
|
||||
ZFS_CHECKSUM_OPTIONS, ZFS_COMPRESS_OPTIONS,
|
||||
AdvancedBootdiskOptions, BootdiskOptions, BtrfsBootdiskOptions, Disk, FsType,
|
||||
LvmBootdiskOptions, ZfsBootdiskOptions, ZFS_CHECKSUM_OPTIONS, ZFS_COMPRESS_OPTIONS,
|
||||
},
|
||||
setup::{BootType, ProductConfig, ProxmoxProduct},
|
||||
disk_checks::{check_btrfs_raid_config, check_for_duplicate_disks, check_disks_4kn_legacy_boot, check_zfs_raid_config},
|
||||
};
|
||||
|
||||
pub struct BootdiskOptionsView {
|
||||
|
@ -5,9 +5,7 @@ use cursive::{
|
||||
};
|
||||
|
||||
use super::FormView;
|
||||
use crate::{
|
||||
system, InstallerState,
|
||||
};
|
||||
use crate::{system, InstallerState};
|
||||
use proxmox_installer_common::{
|
||||
options::TimezoneOptions,
|
||||
setup::{KeyboardMapping, LocaleInfo},
|
||||
|
Loading…
Reference in New Issue
Block a user