mirror of
https://git.proxmox.com/git/proxmox-firewall
synced 2025-08-05 10:08:39 +00:00
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:
parent
a4c504dcb8
commit
f33b9c8071
@ -2,4 +2,5 @@
|
||||
members = [
|
||||
"proxmox-ve-config",
|
||||
"proxmox-nftables",
|
||||
"proxmox-firewall",
|
||||
]
|
||||
|
17
proxmox-firewall/Cargo.toml
Normal file
17
proxmox-firewall/Cargo.toml
Normal 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" }
|
5
proxmox-firewall/src/main.rs
Normal file
5
proxmox-firewall/src/main.rs
Normal file
@ -0,0 +1,5 @@
|
||||
use anyhow::Error;
|
||||
|
||||
fn main() -> Result<(), Error> {
|
||||
Ok(())
|
||||
}
|
Loading…
Reference in New Issue
Block a user