diff --git a/Cargo.toml b/Cargo.toml index a8d33ab..877f103 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,4 +1,5 @@ [workspace] members = [ "proxmox-ve-config", + "proxmox-nftables", ] diff --git a/proxmox-nftables/Cargo.toml b/proxmox-nftables/Cargo.toml new file mode 100644 index 0000000..764e231 --- /dev/null +++ b/proxmox-nftables/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "proxmox-nftables" +version = "0.1.0" +edition = "2021" +authors = [ + "Wolfgang Bumiller ", + "Stefan Hanreich ", + "Proxmox Support Team ", +] +description = "Proxmox VE nftables" +license = "AGPL-3" + +[dependencies] +log = "0.4" + +proxmox-ve-config = { path = "../proxmox-ve-config", optional = true } diff --git a/proxmox-nftables/src/lib.rs b/proxmox-nftables/src/lib.rs new file mode 100644 index 0000000..e69de29