* [pve-devel] [PATCH 1/4] cargo: set edition to 2024
@ 2025-03-31 13:51 Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 2/4] stop using captures trick Maximiliano Sandoval
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Maximiliano Sandoval @ 2025-03-31 13:51 UTC (permalink / raw)
To: pve-devel
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index dc7f312..2d3f50d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,7 +9,7 @@ resolver = "2"
[workspace.package]
authors = ["Proxmox Support Team <support@proxmox.com>"]
-edition = "2021"
+edition = "2024"
license = "AGPL-3"
homepage = "https://proxmox.com"
exclude = [ "debian" ]
--
2.39.5
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* [pve-devel] [PATCH 2/4] stop using captures trick
2025-03-31 13:51 [pve-devel] [PATCH 1/4] cargo: set edition to 2024 Maximiliano Sandoval
@ 2025-03-31 13:51 ` Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 3/4] elide serde lifetimes Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 4/4] run cargo fmt with edition 2024 Maximiliano Sandoval
2 siblings, 0 replies; 4+ messages in thread
From: Maximiliano Sandoval @ 2025-03-31 13:51 UTC (permalink / raw)
To: pve-devel
See https://doc.rust-lang.org/nightly/edition-guide/rust-2024/rpit-lifetime-capture.html.
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
proxmox-ve-config/src/firewall/bridge.rs | 2 +-
proxmox-ve-config/src/sdn/config.rs | 12 ++++++------
proxmox-ve-config/src/sdn/ipam.rs | 2 +-
3 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/proxmox-ve-config/src/firewall/bridge.rs b/proxmox-ve-config/src/firewall/bridge.rs
index 4acb6fa..3a1fc30 100644
--- a/proxmox-ve-config/src/firewall/bridge.rs
+++ b/proxmox-ve-config/src/firewall/bridge.rs
@@ -36,7 +36,7 @@ impl Config {
self.config.options.enable.unwrap_or(BRIDGE_ENABLED_DEFAULT)
}
- pub fn rules(&self) -> impl Iterator<Item = &Rule> + '_ {
+ pub fn rules(&self) -> impl Iterator<Item = &Rule> {
self.config.rules.iter()
}
diff --git a/proxmox-ve-config/src/sdn/config.rs b/proxmox-ve-config/src/sdn/config.rs
index 7ee1101..dc90f0f 100644
--- a/proxmox-ve-config/src/sdn/config.rs
+++ b/proxmox-ve-config/src/sdn/config.rs
@@ -288,7 +288,7 @@ impl SubnetConfig {
self.name.cidr()
}
- pub fn dhcp_ranges(&self) -> impl Iterator<Item = &IpRange> + '_ {
+ pub fn dhcp_ranges(&self) -> impl Iterator<Item = &IpRange> {
self.dhcp_range.iter()
}
}
@@ -332,7 +332,7 @@ impl VnetConfig {
Ok(self.subnets.insert(*subnet.cidr(), subnet))
}
- pub fn subnets(&self) -> impl Iterator<Item = &SubnetConfig> + '_ {
+ pub fn subnets(&self) -> impl Iterator<Item = &SubnetConfig> {
self.subnets.values()
}
@@ -385,7 +385,7 @@ impl ZoneConfig {
Ok(self.vnets.insert(vnet.name.clone(), vnet))
}
- pub fn vnets(&self) -> impl Iterator<Item = &VnetConfig> + '_ {
+ pub fn vnets(&self) -> impl Iterator<Item = &VnetConfig> {
self.vnets.values()
}
@@ -510,7 +510,7 @@ impl SdnConfig {
self.zones.get(name)
}
- pub fn zones(&self) -> impl Iterator<Item = &ZoneConfig> + '_ {
+ pub fn zones(&self) -> impl Iterator<Item = &ZoneConfig> {
self.zones.values()
}
@@ -525,7 +525,7 @@ impl SdnConfig {
None
}
- pub fn vnets(&self) -> impl Iterator<Item = (&ZoneConfig, &VnetConfig)> + '_ {
+ pub fn vnets(&self) -> impl Iterator<Item = (&ZoneConfig, &VnetConfig)> {
self.zones()
.flat_map(|zone| zone.vnets().map(move |vnet| (zone, vnet)))
}
@@ -544,7 +544,7 @@ impl SdnConfig {
pub fn ipsets<'a>(
&'a self,
filter: Option<&'a Allowlist<VnetName>>,
- ) -> impl Iterator<Item = Ipset> + '_ {
+ ) -> impl Iterator<Item = Ipset> {
self.zones
.values()
.flat_map(|zone| zone.vnets())
diff --git a/proxmox-ve-config/src/sdn/ipam.rs b/proxmox-ve-config/src/sdn/ipam.rs
index 598b835..0e6dd69 100644
--- a/proxmox-ve-config/src/sdn/ipam.rs
+++ b/proxmox-ve-config/src/sdn/ipam.rs
@@ -321,7 +321,7 @@ impl Ipam {
///
/// It contains all IPs in all VNets, that a guest has stored in IPAM.
/// Ipset name is of the form `guest-ipam-<vmid>`
- pub fn ipsets(&self, filter: Option<&Allowlist<Vmid>>) -> impl Iterator<Item = Ipset> + '_ {
+ pub fn ipsets(&self, filter: Option<&Allowlist<Vmid>>) -> impl Iterator<Item = Ipset> {
self.entries
.iter()
.flat_map(|(_, entries)| entries.iter())
--
2.39.5
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* [pve-devel] [PATCH 3/4] elide serde lifetimes
2025-03-31 13:51 [pve-devel] [PATCH 1/4] cargo: set edition to 2024 Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 2/4] stop using captures trick Maximiliano Sandoval
@ 2025-03-31 13:51 ` Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 4/4] run cargo fmt with edition 2024 Maximiliano Sandoval
2 siblings, 0 replies; 4+ messages in thread
From: Maximiliano Sandoval @ 2025-03-31 13:51 UTC (permalink / raw)
To: pve-devel
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
proxmox-ve-config/src/firewall/parse.rs | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/proxmox-ve-config/src/firewall/parse.rs b/proxmox-ve-config/src/firewall/parse.rs
index 7bf00c0..8cf4757 100644
--- a/proxmox-ve-config/src/firewall/parse.rs
+++ b/proxmox-ve-config/src/firewall/parse.rs
@@ -316,7 +316,7 @@ pub mod serde_option_log_ratelimit {
#[derive(Clone, Copy, Debug)]
pub struct SomeStrDeserializer<'a, E>(serde::de::value::StrDeserializer<'a, E>);
-impl<'de, 'a, E> serde::de::Deserializer<'de> for SomeStrDeserializer<'a, E>
+impl<'de, E> serde::de::Deserializer<'de> for SomeStrDeserializer<'_, E>
where
E: serde::de::Error,
{
@@ -379,7 +379,7 @@ impl<'a> From<&'a str> for SomeStr<'a> {
}
}
-impl<'de, 'a, E> serde::de::IntoDeserializer<'de, E> for SomeStr<'a>
+impl<'a, E> serde::de::IntoDeserializer<'_, E> for SomeStr<'a>
where
E: serde::de::Error,
{
@@ -465,7 +465,7 @@ impl From<String> for SomeString {
}
}
-impl<'de, E> serde::de::IntoDeserializer<'de, E> for SomeString
+impl<E> serde::de::IntoDeserializer<'_, E> for SomeString
where
E: serde::de::Error,
{
--
2.39.5
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* [pve-devel] [PATCH 4/4] run cargo fmt with edition 2024
2025-03-31 13:51 [pve-devel] [PATCH 1/4] cargo: set edition to 2024 Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 2/4] stop using captures trick Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 3/4] elide serde lifetimes Maximiliano Sandoval
@ 2025-03-31 13:51 ` Maximiliano Sandoval
2 siblings, 0 replies; 4+ messages in thread
From: Maximiliano Sandoval @ 2025-03-31 13:51 UTC (permalink / raw)
To: pve-devel
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
---
proxmox-ve-config/src/firewall/cluster.rs | 6 ++++--
proxmox-ve-config/src/firewall/common.rs | 4 ++--
proxmox-ve-config/src/firewall/ct_helper.rs | 2 +-
proxmox-ve-config/src/firewall/guest.rs | 4 ++--
proxmox-ve-config/src/firewall/host.rs | 2 +-
proxmox-ve-config/src/firewall/parse.rs | 2 +-
proxmox-ve-config/src/firewall/ports.rs | 2 +-
proxmox-ve-config/src/firewall/types/address.rs | 6 ++++--
proxmox-ve-config/src/firewall/types/alias.rs | 2 +-
proxmox-ve-config/src/firewall/types/ipset.rs | 2 +-
proxmox-ve-config/src/firewall/types/log.rs | 2 +-
proxmox-ve-config/src/firewall/types/port.rs | 2 +-
proxmox-ve-config/src/firewall/types/rule.rs | 4 ++--
proxmox-ve-config/src/firewall/types/rule_match.rs | 6 +++---
proxmox-ve-config/src/guest/types.rs | 2 +-
proxmox-ve-config/src/guest/vm.rs | 2 +-
proxmox-ve-config/src/sdn/config.rs | 4 ++--
proxmox-ve-config/src/sdn/ipam.rs | 2 +-
proxmox-ve-config/tests/sdn/main.rs | 4 ++--
19 files changed, 32 insertions(+), 28 deletions(-)
diff --git a/proxmox-ve-config/src/firewall/cluster.rs b/proxmox-ve-config/src/firewall/cluster.rs
index ce3dd53..97dcc15 100644
--- a/proxmox-ve-config/src/firewall/cluster.rs
+++ b/proxmox-ve-config/src/firewall/cluster.rs
@@ -135,6 +135,7 @@ pub struct Options {
#[cfg(test)]
mod tests {
use crate::firewall::types::{
+ Cidr,
address::IpList,
alias::{AliasName, AliasScope},
ipset::{IpsetAddress, IpsetEntry},
@@ -143,7 +144,6 @@ mod tests {
rule_match::{
Icmpv6, Icmpv6Code, IpAddrMatch, IpMatch, Ports, Protocol, RuleMatch, Tcp, Udp,
},
- Cidr,
};
use super::*;
@@ -226,7 +226,9 @@ IN BGP(REJECT) -log crit -source 1.2.3.4
Alias::new(
"wide",
Cidr::new_v6(
- [0xCCCC, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000],
+ [
+ 0xCCCC, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x000
+ ],
64
)
.unwrap(),
diff --git a/proxmox-ve-config/src/firewall/common.rs b/proxmox-ve-config/src/firewall/common.rs
index 3999168..09feb83 100644
--- a/proxmox-ve-config/src/firewall/common.rs
+++ b/proxmox-ve-config/src/firewall/common.rs
@@ -1,10 +1,10 @@
use std::collections::{BTreeMap, HashMap};
use std::io;
-use anyhow::{bail, format_err, Error};
+use anyhow::{Error, bail, format_err};
use serde::de::IntoDeserializer;
-use crate::firewall::parse::{parse_named_section_tail, split_key_value, SomeString};
+use crate::firewall::parse::{SomeString, parse_named_section_tail, split_key_value};
use crate::firewall::types::ipset::{IpsetName, IpsetScope};
use crate::firewall::types::rule::{Direction, Kind};
use crate::firewall::types::{Alias, Group, Ipset, Rule};
diff --git a/proxmox-ve-config/src/firewall/ct_helper.rs b/proxmox-ve-config/src/firewall/ct_helper.rs
index 40e4fee..03e2637 100644
--- a/proxmox-ve-config/src/firewall/ct_helper.rs
+++ b/proxmox-ve-config/src/firewall/ct_helper.rs
@@ -1,4 +1,4 @@
-use anyhow::{bail, Error};
+use anyhow::{Error, bail};
use serde::Deserialize;
use std::collections::HashMap;
use std::sync::OnceLock;
diff --git a/proxmox-ve-config/src/firewall/guest.rs b/proxmox-ve-config/src/firewall/guest.rs
index 23eaa4e..1114452 100644
--- a/proxmox-ve-config/src/firewall/guest.rs
+++ b/proxmox-ve-config/src/firewall/guest.rs
@@ -4,13 +4,13 @@ use std::io;
use crate::guest::types::Vmid;
use crate::guest::vm::NetworkConfig;
+use crate::firewall::types::Ipset;
use crate::firewall::types::alias::{Alias, AliasName};
use crate::firewall::types::ipset::IpsetScope;
use crate::firewall::types::log::LogLevel;
use crate::firewall::types::rule::{Direction, Rule, Verdict};
-use crate::firewall::types::Ipset;
-use anyhow::{bail, Error};
+use anyhow::{Error, bail};
use serde::Deserialize;
use crate::firewall::parse::serde_option_bool;
diff --git a/proxmox-ve-config/src/firewall/host.rs b/proxmox-ve-config/src/firewall/host.rs
index 394896c..39ac67c 100644
--- a/proxmox-ve-config/src/firewall/host.rs
+++ b/proxmox-ve-config/src/firewall/host.rs
@@ -1,7 +1,7 @@
use std::io;
use std::net::IpAddr;
-use anyhow::{bail, Error};
+use anyhow::{Error, bail};
use serde::Deserialize;
use crate::host::utils::{host_ips, network_interface_cidrs};
diff --git a/proxmox-ve-config/src/firewall/parse.rs b/proxmox-ve-config/src/firewall/parse.rs
index 8cf4757..4d02352 100644
--- a/proxmox-ve-config/src/firewall/parse.rs
+++ b/proxmox-ve-config/src/firewall/parse.rs
@@ -1,6 +1,6 @@
use std::fmt;
-use anyhow::{bail, format_err, Error};
+use anyhow::{Error, bail, format_err};
const NAME_SPECIAL_CHARACTERS: [u8; 2] = [b'-', b'_'];
diff --git a/proxmox-ve-config/src/firewall/ports.rs b/proxmox-ve-config/src/firewall/ports.rs
index 9d5d1be..f88a442 100644
--- a/proxmox-ve-config/src/firewall/ports.rs
+++ b/proxmox-ve-config/src/firewall/ports.rs
@@ -1,4 +1,4 @@
-use anyhow::{format_err, Error};
+use anyhow::{Error, format_err};
use std::sync::OnceLock;
#[derive(Default)]
diff --git a/proxmox-ve-config/src/firewall/types/address.rs b/proxmox-ve-config/src/firewall/types/address.rs
index 9b73d3d..e279111 100644
--- a/proxmox-ve-config/src/firewall/types/address.rs
+++ b/proxmox-ve-config/src/firewall/types/address.rs
@@ -2,7 +2,7 @@ use std::fmt::{self, Display};
use std::net::{IpAddr, Ipv4Addr, Ipv6Addr};
use std::ops::Deref;
-use anyhow::{bail, format_err, Error};
+use anyhow::{Error, bail, format_err};
use serde_with::{DeserializeFromStr, SerializeDisplay};
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
@@ -1652,7 +1652,9 @@ mod tests {
assert_eq!(
[Ipv6Cidr::new(
- [0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF],
+ [
+ 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF, 0xFFFF
+ ],
128
)
.unwrap(),],
diff --git a/proxmox-ve-config/src/firewall/types/alias.rs b/proxmox-ve-config/src/firewall/types/alias.rs
index 7bc2fb8..22534d5 100644
--- a/proxmox-ve-config/src/firewall/types/alias.rs
+++ b/proxmox-ve-config/src/firewall/types/alias.rs
@@ -1,7 +1,7 @@
use std::fmt::Display;
use std::str::FromStr;
-use anyhow::{bail, format_err, Error};
+use anyhow::{Error, bail, format_err};
use serde_with::{DeserializeFromStr, SerializeDisplay};
use crate::firewall::parse::{match_name, match_non_whitespace};
diff --git a/proxmox-ve-config/src/firewall/types/ipset.rs b/proxmox-ve-config/src/firewall/types/ipset.rs
index fe5a930..231014e 100644
--- a/proxmox-ve-config/src/firewall/types/ipset.rs
+++ b/proxmox-ve-config/src/firewall/types/ipset.rs
@@ -2,7 +2,7 @@ use core::fmt::Display;
use std::ops::{Deref, DerefMut};
use std::str::FromStr;
-use anyhow::{bail, format_err, Error};
+use anyhow::{Error, bail, format_err};
use serde_with::DeserializeFromStr;
use crate::firewall::parse::match_non_whitespace;
diff --git a/proxmox-ve-config/src/firewall/types/log.rs b/proxmox-ve-config/src/firewall/types/log.rs
index 72344e4..14bffe9 100644
--- a/proxmox-ve-config/src/firewall/types/log.rs
+++ b/proxmox-ve-config/src/firewall/types/log.rs
@@ -2,7 +2,7 @@ use std::fmt;
use std::str::FromStr;
use crate::firewall::parse::parse_bool;
-use anyhow::{bail, Error};
+use anyhow::{Error, bail};
use serde::{Deserialize, Serialize};
#[derive(Copy, Clone, Debug, Deserialize, Serialize, Default)]
diff --git a/proxmox-ve-config/src/firewall/types/port.rs b/proxmox-ve-config/src/firewall/types/port.rs
index c1252d9..999f10a 100644
--- a/proxmox-ve-config/src/firewall/types/port.rs
+++ b/proxmox-ve-config/src/firewall/types/port.rs
@@ -1,7 +1,7 @@
use std::fmt;
use std::ops::Deref;
-use anyhow::{bail, Error};
+use anyhow::{Error, bail};
use serde_with::DeserializeFromStr;
use crate::firewall::ports::parse_named_port;
diff --git a/proxmox-ve-config/src/firewall/types/rule.rs b/proxmox-ve-config/src/firewall/types/rule.rs
index 2c8f49c..fc4be03 100644
--- a/proxmox-ve-config/src/firewall/types/rule.rs
+++ b/proxmox-ve-config/src/firewall/types/rule.rs
@@ -2,7 +2,7 @@ use core::fmt::Display;
use std::fmt;
use std::str::FromStr;
-use anyhow::{bail, ensure, format_err, Error};
+use anyhow::{Error, bail, ensure, format_err};
use crate::firewall::parse::match_name;
use crate::firewall::types::rule_match::RuleMatch;
@@ -248,12 +248,12 @@ impl FromStr for RuleGroup {
#[cfg(test)]
mod tests {
use crate::firewall::types::{
+ Cidr,
address::{IpEntry, IpList, IpRange},
alias::{AliasName, AliasScope},
ipset::{IpsetName, IpsetScope},
log::LogLevel,
rule_match::{Icmp, IcmpCode, IpAddrMatch, IpMatch, Ports, Protocol, Udp},
- Cidr,
};
use super::*;
diff --git a/proxmox-ve-config/src/firewall/types/rule_match.rs b/proxmox-ve-config/src/firewall/types/rule_match.rs
index 94d8624..5ab31ca 100644
--- a/proxmox-ve-config/src/firewall/types/rule_match.rs
+++ b/proxmox-ve-config/src/firewall/types/rule_match.rs
@@ -4,12 +4,12 @@ use std::str::FromStr;
use serde::Deserialize;
-use anyhow::{bail, format_err, Error};
+use anyhow::{Error, bail, format_err};
use serde::de::IntoDeserializer;
use proxmox_sortable_macro::sortable;
-use crate::firewall::parse::{match_name, match_non_whitespace, SomeStr};
+use crate::firewall::parse::{SomeStr, match_name, match_non_whitespace};
use crate::firewall::types::address::{Family, IpList};
use crate::firewall::types::alias::AliasName;
use crate::firewall::types::ipset::IpsetName;
@@ -770,7 +770,7 @@ impl fmt::Display for Icmpv6Code {
#[cfg(test)]
mod tests {
- use crate::firewall::types::{alias::AliasScope::Guest, Cidr};
+ use crate::firewall::types::{Cidr, alias::AliasScope::Guest};
use super::*;
diff --git a/proxmox-ve-config/src/guest/types.rs b/proxmox-ve-config/src/guest/types.rs
index ed6a48c..3068878 100644
--- a/proxmox-ve-config/src/guest/types.rs
+++ b/proxmox-ve-config/src/guest/types.rs
@@ -1,7 +1,7 @@
use std::fmt;
use std::str::FromStr;
-use anyhow::{format_err, Error};
+use anyhow::{Error, format_err};
use serde_with::{DeserializeFromStr, SerializeDisplay};
#[derive(
diff --git a/proxmox-ve-config/src/guest/vm.rs b/proxmox-ve-config/src/guest/vm.rs
index 3476b93..1644516 100644
--- a/proxmox-ve-config/src/guest/vm.rs
+++ b/proxmox-ve-config/src/guest/vm.rs
@@ -5,7 +5,7 @@ use std::{collections::HashMap, net::Ipv6Addr};
use proxmox_schema::property_string::PropertyIterator;
-use anyhow::{bail, Error};
+use anyhow::{Error, bail};
use serde_with::DeserializeFromStr;
use crate::firewall::parse::{match_digits, parse_bool};
diff --git a/proxmox-ve-config/src/sdn/config.rs b/proxmox-ve-config/src/sdn/config.rs
index dc90f0f..800f8fa 100644
--- a/proxmox-ve-config/src/sdn/config.rs
+++ b/proxmox-ve-config/src/sdn/config.rs
@@ -6,7 +6,7 @@ use std::{
str::FromStr,
};
-use proxmox_schema::{property_string::PropertyString, ApiType, ObjectSchema, StringSchema};
+use proxmox_schema::{ApiType, ObjectSchema, StringSchema, property_string::PropertyString};
use serde::Deserialize;
use serde_with::{DeserializeFromStr, SerializeDisplay};
@@ -14,9 +14,9 @@ use serde_with::{DeserializeFromStr, SerializeDisplay};
use crate::{
common::Allowlist,
firewall::types::{
+ Cidr, Ipset,
address::{IpRange, IpRangeError},
ipset::{IpsetEntry, IpsetName, IpsetScope},
- Cidr, Ipset,
},
sdn::{SdnNameError, SubnetName, VnetName, ZoneName},
};
diff --git a/proxmox-ve-config/src/sdn/ipam.rs b/proxmox-ve-config/src/sdn/ipam.rs
index 0e6dd69..6fea5a4 100644
--- a/proxmox-ve-config/src/sdn/ipam.rs
+++ b/proxmox-ve-config/src/sdn/ipam.rs
@@ -10,8 +10,8 @@ use serde::Deserialize;
use crate::{
common::Allowlist,
firewall::types::{
- ipset::{IpsetEntry, IpsetScope},
Cidr, Ipset,
+ ipset::{IpsetEntry, IpsetScope},
},
guest::{types::Vmid, vm::MacAddress},
sdn::{SdnNameError, SubnetName, ZoneName},
diff --git a/proxmox-ve-config/tests/sdn/main.rs b/proxmox-ve-config/tests/sdn/main.rs
index 1815bec..32b5454 100644
--- a/proxmox-ve-config/tests/sdn/main.rs
+++ b/proxmox-ve-config/tests/sdn/main.rs
@@ -4,15 +4,15 @@ use std::{
};
use proxmox_ve_config::{
- firewall::types::{address::IpRange, Cidr},
+ firewall::types::{Cidr, address::IpRange},
guest::vm::MacAddress,
sdn::{
+ SubnetName, VnetName, ZoneName,
config::{
RunningConfig, SdnConfig, SdnConfigError, SubnetConfig, VnetConfig, ZoneConfig,
ZoneType,
},
ipam::{Ipam, IpamDataVm, IpamEntry, IpamJson},
- SubnetName, VnetName, ZoneName,
},
};
--
2.39.5
_______________________________________________
pve-devel mailing list
pve-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2025-03-31 13:52 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-03-31 13:51 [pve-devel] [PATCH 1/4] cargo: set edition to 2024 Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 2/4] stop using captures trick Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 3/4] elide serde lifetimes Maximiliano Sandoval
2025-03-31 13:51 ` [pve-devel] [PATCH 4/4] run cargo fmt with edition 2024 Maximiliano Sandoval
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal