From ad3da718f804d01b97c8a152def6f3a06c6326af Mon Sep 17 00:00:00 2001 From: Florian Bartels Date: Thu, 22 Dec 2022 10:31:58 +0100 Subject: [PATCH] Enable tests for QNX/Neutrino, integrate new libc version --- .github/workflows/tests.yml | 1 + Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index acd1acc8..a0742521 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -294,6 +294,7 @@ jobs: aarch64-kmc-solid_asp3, armv6k-nintendo-3ds, riscv32imc-esp-espidf, + aarch64-unknown-nto-qnx710, # `std` support still in progress. Can be moved up with the other # apple targets after https://github.com/rust-lang/rust/pull/103503 aarch64-apple-tvos, diff --git a/Cargo.toml b/Cargo.toml index 3ea982f5..139ff908 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "getrandom" -version = "0.2.8" # Also update html_root_url in lib.rs when bumping this +version = "0.2.8" # Also update html_root_url in lib.rs when bumping this edition = "2018" authors = ["The Rand Project Developers"] license = "MIT OR Apache-2.0" @@ -18,7 +18,7 @@ compiler_builtins = { version = "0.1", optional = true } core = { version = "1.0", optional = true, package = "rustc-std-workspace-core" } [target.'cfg(unix)'.dependencies] -libc = { version = "0.2.136", default-features = false } +libc = { version = "0.2.139", default-features = false } [target.'cfg(target_os = "wasi")'.dependencies] wasi = { version = "0.11", default-features = false }