nftables: add crate for libnftables bindings

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>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Stefan Hanreich 2024-03-29 10:30:32 +01:00 committed by Thomas Lamprecht
parent e4f0e222df
commit c1589cc796
3 changed files with 17 additions and 0 deletions

View File

@ -1,4 +1,5 @@
[workspace]
members = [
"proxmox-ve-config",
"proxmox-nftables",
]

View File

@ -0,0 +1,16 @@
[package]
name = "proxmox-nftables"
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"
license = "AGPL-3"
[dependencies]
log = "0.4"
proxmox-ve-config = { path = "../proxmox-ve-config", optional = true }

View File