From a8d55075b50ff38facd17bb239246fdd3f169b2f Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Mon, 28 Oct 2024 16:23:07 -0400 Subject: [PATCH] Update Cargo.toml after the cfg rename Otherwise we get a bunch of warnings: > unexpected cfg condition name: bindgen_rs_file While I'm here, drop the authors field. It's no longer accurate as we've significantly reworked this from Android's original contribution. We could list the current maintainers, but that's redundant with the git repo, and bssl-crypto omits it, so let's just omit it. Change-Id: Ia1b60f1dfa4f4626b5fe2562f35a14ea0ce3aef5 Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/72627 Auto-Submit: David Benjamin Commit-Queue: David Benjamin Commit-Queue: Bob Beck Reviewed-by: Bob Beck --- rust/bssl-sys/Cargo.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rust/bssl-sys/Cargo.toml b/rust/bssl-sys/Cargo.toml index 7e863dae3..bf490e4dc 100644 --- a/rust/bssl-sys/Cargo.toml +++ b/rust/bssl-sys/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "bssl-sys" version = "0.1.0" -authors = ["Benjamin Brittain "] edition = "2018" publish = false license = "ISC" @@ -11,4 +10,4 @@ license = "ISC" links = "bssl" [lints.rust] -unexpected_cfgs = { level = "warn", check-cfg = ['cfg(unsupported_inline_wrappers)', 'cfg(soong)'] } +unexpected_cfgs = { level = "warn", check-cfg = ['cfg(unsupported_inline_wrappers)', 'cfg(bindgen_rs_file)'] }