[package] name = "aranya-bssl-sys" version = "0.1.0" authors = ["SpiderOak, Inc."] license = "MIT" description = "BoringSSL FFI bindings" repository = "https://github.com/aranya-project/aranya-bssl-sys" links = "boringssl" readme = "README.md" categories = ["cryptography", "external-ffi-bindings"] edition = "2021" include = [ "/*.md", "/*.toml", "/LICENSE", "/build.rs", "/cmake/", "/malloc.patch", "/src/", ] [features] # Build the SSL part of BoringSSL. ssl = [] [build-dependencies] bindgen = { version = "0.70", default-features = false, features = ["runtime"] } cfg-if = { version = "1.0" } cmake = { version = "0.1" } memchr = { version = "2" } [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(fips)', 'cfg(fuzzing)', 'cfg(ndk_old_gcc)'] }