From 7b04d724d0900770ac9fac556b832eaefbf99bc9 Mon Sep 17 00:00:00 2001 From: Bob Beck Date: Thu, 16 Mar 2023 12:05:29 -0600 Subject: [PATCH] Get rid of the libc crate dependency in bssl-sys It appears to no longer be needed. Change-Id: Idd9aa128192eb0f1bdff52e190fd032090411d43 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/58165 Auto-Submit: Bob Beck Commit-Queue: David Benjamin Reviewed-by: David Benjamin Reviewed-by: Nabil Wadih --- rust/bssl-crypto/deny.toml | 3 --- rust/bssl-sys/Cargo.toml | 1 - 2 files changed, 4 deletions(-) diff --git a/rust/bssl-crypto/deny.toml b/rust/bssl-crypto/deny.toml index 20fc0c874..48cba429c 100644 --- a/rust/bssl-crypto/deny.toml +++ b/rust/bssl-crypto/deny.toml @@ -168,9 +168,6 @@ allow = [ { name = "bssl-crypto", version = "=0.1.0" }, # bssl-sys should be allowed, version appropriately. { name = "bssl-sys", version = "=0.1.0" }, - # libc is used by bssl-sys from android, but is not really needed and should - # be removed once this can be checked with android. - { name = "libc", version = "=0.2.140" }, # hex-literal was added for ease of tests, but should be removed. { name = "hex-literal", version = "=0.3.4" }, ] diff --git a/rust/bssl-sys/Cargo.toml b/rust/bssl-sys/Cargo.toml index c5e61fd03..fe5f47f96 100644 --- a/rust/bssl-sys/Cargo.toml +++ b/rust/bssl-sys/Cargo.toml @@ -7,4 +7,3 @@ publish = false license = "MIT" [dependencies] -libc = "0.2"