firewall: add firewall crate

Co-authored-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
Signed-off-by: Stefan Hanreich <s.hanreich@proxmox.com>
Reviewed-by: Lukas Wagner <l.wagner@proxmox.com>
Reviewed-by: Max Carrara <m.carrara@proxmox.com>
This commit is contained in:
Stefan Hanreich 2024-03-29 10:47:10 +01:00 committed by Thomas Lamprecht
parent a4c504dcb8
commit f33b9c8071
3 changed files with 23 additions and 0 deletions

View File

@ -2,4 +2,5 @@
members = [
"proxmox-ve-config",
"proxmox-nftables",
"proxmox-firewall",
]

View File

@ -0,0 +1,17 @@
[package]
name = "proxmox-firewall"
version = "0.1.0"
edition = "2021"
authors = [
"Wolfgang Bumiller <w.bumiller@proxmox.com>",
"Stefan Hanreich <s.hanreich@proxmox.com>",
"Proxmox Support Team <support@proxmox.com>",
]
description = "Proxmox VE nftables firewall implementation"
license = "AGPL-3"
[dependencies]
anyhow = "1"
proxmox-nftables = { path = "../proxmox-nftables", features = ["config-ext"] }
proxmox-ve-config = { path = "../proxmox-ve-config" }

View File

@ -0,0 +1,5 @@
use anyhow::Error;
fn main() -> Result<(), Error> {
Ok(())
}