From 5220d353733d93fd6a01c05a8f1613f6c3c07aa9 Mon Sep 17 00:00:00 2001 From: Robert Bragg Date: Thu, 11 Aug 2022 23:02:10 +0100 Subject: [PATCH] Don't depend on a specific micro version of libc --- android-activity/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android-activity/Cargo.toml b/android-activity/Cargo.toml index a2e013e..dcf6bfc 100644 --- a/android-activity/Cargo.toml +++ b/android-activity/Cargo.toml @@ -16,7 +16,7 @@ license = "MIT OR Apache-2.0" # are actually mutually exclusive. # # In general it's only the final application crate that needs -# to decide in a backend. +# to decide on a backend. default=[] game-activity = [] native-activity = [] @@ -30,7 +30,7 @@ ndk-context = "0.1" android-properties = "0.2" num_enum = "0.5" bitflags = "1.3" -libc = "0.2.84" +libc = "0.2" [build-dependencies] cc = { version = "1.0", features = ["parallel"] }