From ef3ac6d21ddb664094540b733896e4e15d5cfc81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Linus=20F=C3=A4rnstrand?= Date: Wed, 29 May 2024 22:40:50 +0200 Subject: [PATCH] Upgrade ioctl-sys to 0.8.0 ioctl-sys has no dependencies, so this does not affect the dependency tree more than this direct dependency. There were no direct needs to upgrade except that it's nice to just go with the latest from time to time. ioctl-sys added support for OpenBSD. We have not tried this crate on OpenBSD, but since that OS has PF, this *might* make this crate work on OpenBSD. --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2c103cc..abe3c10 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -180,9 +180,9 @@ checksum = "3c9826188e666f2ed92071d2dadef6edc430b11b158b5b2b3f4babbcc891eaaa" [[package]] name = "ioctl-sys" -version = "0.6.0" +version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1c429fffa658f288669529fc26565f728489a2e39bc7b24a428aaaf51355182e" +checksum = "8bd11f3a29434026f5ff98c730b668ba74b1033637b8817940b54d040696133c" [[package]] name = "ipnetwork" diff --git a/Cargo.toml b/Cargo.toml index 119fa78..fefd2b3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ travis-ci = { repository = "mullvad/pfctl-rs" } [dependencies] errno = "0.2" error-chain = "0.12.4" -ioctl-sys = "0.6.0" +ioctl-sys = "0.8.0" libc = "0.2.29" derive_builder = "0.9" ipnetwork = "0.20.0"