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:
Christoph Heiss 2023-11-03 10:49:36 +01:00 committed by Thomas Lamprecht
parent c16d6893ec
commit feea90d471
6 changed files with 18 additions and 23 deletions

View File

@ -365,4 +365,3 @@ impl Interface {
format!("{} {}", self.state.render(), self.name)
}
}

View File

@ -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 {

View File

@ -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)]

View File

@ -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 {

View File

@ -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},