1[package] 2name = "openssl-sys" 3version = "0.9.91" 4authors = [ 5 "Alex Crichton <alex@alexcrichton.com>", 6 "Steven Fackler <sfackler@gmail.com>", 7] 8license = "MIT" 9description = "FFI bindings to OpenSSL" 10repository = "https://github.com/sfackler/rust-openssl" 11readme = "README.md" 12categories = ["cryptography", "external-ffi-bindings"] 13links = "openssl" 14build = "build/main.rs" 15edition = "2018" 16 17[features] 18vendored = ['openssl-src'] 19unstable_boringssl = ['bssl-sys'] 20 21[dependencies] 22libc = "0.2" 23bssl-sys = { version = "0.1.0", optional = true } 24 25[build-dependencies] 26bindgen = { version = "0.64.0", optional = true, features = ["experimental"] } 27cc = "1.0.61" 28openssl-src = { version = "111", optional = true } 29pkg-config = "0.3.9" 30vcpkg = "0.2.8" 31 32# We don't actually use metadeps for annoying reasons but this is still here for tooling 33[package.metadata.pkg-config] 34openssl = "1.0.1" 35