1 | [package] |
2 | name = "openssl-sys" |
3 | version = "0.9.101" |
4 | authors = [ |
5 | "Alex Crichton <alex@alexcrichton.com>" , |
6 | "Steven Fackler <sfackler@gmail.com>" , |
7 | ] |
8 | license = "MIT" |
9 | description = "FFI bindings to OpenSSL" |
10 | repository = "https://github.com/sfackler/rust-openssl" |
11 | readme = "README.md" |
12 | categories = ["cryptography" , "external-ffi-bindings" ] |
13 | links = "openssl" |
14 | build = "build/main.rs" |
15 | edition = "2018" |
16 | |
17 | [features] |
18 | vendored = ['openssl-src' ] |
19 | unstable_boringssl = ['bssl-sys' ] |
20 | |
21 | [dependencies] |
22 | libc = "0.2" |
23 | bssl-sys = { version = "0.1.0" , optional = true } |
24 | |
25 | [build-dependencies] |
26 | bindgen = { version = "0.65.0" , optional = true, features = ["experimental" ] } |
27 | cc = "1.0.61" |
28 | openssl-src = { version = "300.1.2" , optional = true, features = ["legacy" ] } |
29 | pkg-config = "0.3.9" |
30 | vcpkg = "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] |
34 | openssl = "1.0.1" |
35 | |