From b32194e031719624439d6708f4a425b0c35ca422 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20Laitl?= Date: Thu, 5 Sep 2024 16:21:35 +0200 Subject: [PATCH] (Try to) make netlink-request publishable --- netlink-request/Cargo.toml | 11 +++++++++-- netlink-request/README.md | 5 +++++ publicip/Cargo.toml | 1 + wireguard-control/Cargo.toml | 1 + wireguard-control/README.md | 2 +- 5 files changed, 17 insertions(+), 3 deletions(-) create mode 100644 netlink-request/README.md diff --git a/netlink-request/Cargo.toml b/netlink-request/Cargo.toml index ce14822..02782e0 100644 --- a/netlink-request/Cargo.toml +++ b/netlink-request/Cargo.toml @@ -1,7 +1,14 @@ [package] -name = "netlink-request" -version = "1.6.1" +authors = ["Jake McGinty "] +categories = ["os::unix-apis"] +description = "A helper to perform requests using the Linux netlink interface" edition = "2021" +license = "LGPL-2.1-or-later" +name = "netlink-request" +readme = "README.md" +repository = "https://github.com/tonarino/innernet" +publish = true +version = "1.6.1" [target.'cfg(target_os = "linux")'.dependencies] netlink-sys = "0.8.5" diff --git a/netlink-request/README.md b/netlink-request/README.md new file mode 100644 index 0000000..e825969 --- /dev/null +++ b/netlink-request/README.md @@ -0,0 +1,5 @@ +# `netlink-request` + +A helper to perform requests using the Linux netlink interface. + +Versioning is held in lockstep with innernet, although this may change in the future. diff --git a/publicip/Cargo.toml b/publicip/Cargo.toml index 4e985ee..d4ef765 100644 --- a/publicip/Cargo.toml +++ b/publicip/Cargo.toml @@ -2,6 +2,7 @@ authors = ["Jake McGinty "] edition = "2021" name = "publicip" +publish = false version = "0.1.0" [dependencies] diff --git a/wireguard-control/Cargo.toml b/wireguard-control/Cargo.toml index a7606e2..c718699 100644 --- a/wireguard-control/Cargo.toml +++ b/wireguard-control/Cargo.toml @@ -7,6 +7,7 @@ license = "LGPL-2.1-or-later" name = "wireguard-control" readme = "README.md" repository = "https://github.com/tonarino/innernet" +publish = true version = "1.6.1" [dependencies] diff --git a/wireguard-control/README.md b/wireguard-control/README.md index bf19bad..e34e775 100644 --- a/wireguard-control/README.md +++ b/wireguard-control/README.md @@ -9,4 +9,4 @@ Currently supports: * Linux kernel WireGuard implementation * Userspace WireGuard implementations (tested against `wireguard-go` on macOS and Linux) -Versioning is held in lockstep with innernet, although this may change in the future. \ No newline at end of file +Versioning is held in lockstep with innernet, although this may change in the future.