Re: [pve-devel] [PATCH proxmox-ve-rs v4 04/22] frr: create proxmox-frr crate

2025-07-07 Thread Gabriel Goller
On 07.07.2025 13:12, Wolfgang Bumiller wrote: On Wed, Jul 02, 2025 at 04:49:55PM +0200, Gabriel Goller wrote: [snip] +[dependencies] +thiserror = { workspace = true } +anyhow = "1" +tracing = "0.1" + +serde = { workspace = true, features = [ "derive" ] } +serde_with = { workspace = true } +itoa

Re: [pve-devel] [PATCH proxmox-ve-rs v4 04/22] frr: create proxmox-frr crate

2025-07-07 Thread Wolfgang Bumiller
On Wed, Jul 02, 2025 at 04:49:55PM +0200, Gabriel Goller wrote: > This crate holds FRR-types, so rust-types that closely resemble > FRR-configuration items. These types can then simply be converted to > strings (and the final FRR config) by serializing. This has minimal > dependencies and it's only

[pve-devel] [PATCH proxmox-ve-rs v4 04/22] frr: create proxmox-frr crate

2025-07-02 Thread Gabriel Goller
This crate holds FRR-types, so rust-types that closely resemble FRR-configuration items. These types can then simply be converted to strings (and the final FRR config) by serializing. This has minimal dependencies and it's only internal dependency is proxmox-network-types, which holds common types.