diff options
author | Simon Thoby <git@nightmared.fr> | 2023-02-26 18:38:09 +0100 |
---|---|---|
committer | Simon Thoby <git@nightmared.fr> | 2023-02-26 18:47:27 +0100 |
commit | ed347f7cae2bb4b3f90c98c5e4da2b5694bb6c72 (patch) | |
tree | 552b8cc1757e8cfda3315269c7da965a5f2085b2 | |
parent | b025914bd3bcf786ff7ab53c9dabdd6e37a05782 (diff) |
release 0.8.1-alpha1
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | macros/Cargo.toml | 4 |
2 files changed, 4 insertions, 4 deletions
@@ -1,6 +1,6 @@ [package] name = "rustables" -version = "0.8.0" +version = "0.8.1-alpha1" authors = ["lafleur@boum.org", "Simon Thoby", "Mullvad VPN"] license = "GPL-3.0-or-later" description = "Safe abstraction for libnftnl. Provides low-level userspace access to the in-kernel nf_tables subsystem" @@ -20,7 +20,7 @@ log = "0.4" libc = "0.2.43" nix = "0.23" ipnetwork = { version = "0.20", default-features = false } -rustables-macros = { path = "macros" } +rustables-macros = { path = "macros", version = "0.1.1-alpha1" } [dev-dependencies] env_logger = "0.9" diff --git a/macros/Cargo.toml b/macros/Cargo.toml index 4ee8a45..20c3b5f 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rustables-macros" -version = "0.1.0" -authors = ["Simon Thoby"] +version = "0.1.1-alpha1" +authors = ["lafleur@boum.org", "Simon Thoby"] license = "GPL-3.0-or-later" description = "Internal macros for generation netlink structures for the rustables project" repository = "https://gitlab.com/rustwall/rustables" |