summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Baikov <manpacket@gmail.com>2022-02-07 08:29:11 +0800
committerMichael Baikov <manpacket@gmail.com>2022-02-07 08:29:11 +0800
commit6e09f6c6e50a8330da56fe46c3d23fafb2cbf2b1 (patch)
tree0778a042aae5b46a34c4af2c1bd7f31dae576be8
parent7bec9f70deb9b3963c13d82cfe14ff3a274506f5 (diff)
downloadnix-6e09f6c6e50a8330da56fe46c3d23fafb2cbf2b1.zip
use version of libc published on crates
https://github.com/rust-lang/libc/pull/2543 was merged and is available starting from 0.2.114. Using published version of libc makes it easier to use git version of nix
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 5cdf95c5..039341d4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -27,7 +27,7 @@ targets = [
]
[dependencies]
-libc = { git = "https://github.com/rust-lang/libc", rev = "7600416f1ca896b501d58b0f44f1869d566359d6", features = [ "extra_traits" ] }
+libc = { version = "0.2.114", features = [ "extra_traits" ] }
bitflags = "1.1"
cfg-if = "1.0"