From e682f8ef34189f80ebe0d723b72c0216b4c22b24 Mon Sep 17 00:00:00 2001 From: mbodmer Date: Thu, 20 Oct 2022 21:44:33 +0200 Subject: [PATCH 1/3] bump to libc 0.2.135 and nix 0.25 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 125aaa0..dfb1833 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,10 +14,10 @@ edition = "2021" include = ["README.md", "LICENSE-*", "Cargo.toml", "src/"] [dependencies] -libc = "0.2.105" +libc = "0.2.135" alsa-sys = "0.3.1" bitflags = "1.3.2" -nix = { version = "0.24", default-features = false, features = ["ioctl"] } +nix = { version = "0.25", default-features = false, features = ["ioctl"] } [badges] is-it-maintained-issue-resolution = { repository = "diwic/alsa-rs" } From 05108989eee8871f46bd7bdcef0737fad0814ae7 Mon Sep 17 00:00:00 2001 From: mbodmer Date: Fri, 21 Oct 2022 09:38:35 +0200 Subject: [PATCH 2/3] leave libc patch release to cargo version resolution --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dfb1833..6ed1bb8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ edition = "2021" include = ["README.md", "LICENSE-*", "Cargo.toml", "src/"] [dependencies] -libc = "0.2.135" +libc = "0.2" alsa-sys = "0.3.1" bitflags = "1.3.2" nix = { version = "0.25", default-features = false, features = ["ioctl"] } From 56822b1a4df4f84253c476ea5545f63e169e814c Mon Sep 17 00:00:00 2001 From: mbodmer Date: Fri, 21 Oct 2022 10:11:57 +0200 Subject: [PATCH 3/3] allow room for version resolution with nix --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6ed1bb8..9a0f958 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ include = ["README.md", "LICENSE-*", "Cargo.toml", "src/"] libc = "0.2" alsa-sys = "0.3.1" bitflags = "1.3.2" -nix = { version = "0.25", default-features = false, features = ["ioctl"] } +nix = { version = "^0.24", default-features = false, features = ["ioctl"] } [badges] is-it-maintained-issue-resolution = { repository = "diwic/alsa-rs" }