From b8c3a7635155c2eae5d78ea8b0eb0918a48394eb Mon Sep 17 00:00:00 2001 From: Vinzent Steinberg Date: Sun, 14 Apr 2019 10:06:48 +0200 Subject: [PATCH] Depend on libc version required for `pthread_atfork` Fixes #47. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index c54d85c37b6..bcff4eb260e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ features = ["into_bits"] [target.'cfg(unix)'.dependencies] # Used for fork protection (reseeding.rs) -libc = { version = "0.2", default-features = false } +libc = { version = "0.2.22", default-features = false } [dev-dependencies] # This has a histogram implementation used for testing uniformity.