From 8bcf3ac11e7df71081a6e8295348ebb0d93f774c Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 4 Jun 2019 16:13:20 -0700 Subject: [PATCH] Update nix to 0.14 This is needed to fix breaking changes in libc on arm and s390x. See: https://github.com/nix-rust/nix/pull/1055 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index fae4d037..9546fe9b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ edition = "2018" [dependencies] libc = "0.2.36" -nix = "0.13" +nix = "0.14" bitflags = "1" serde = "1" error-chain = "0.12"