1 | [package] |
2 | name = "openssl-sys" |
3 | version = "0.9.107" |
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 = "2021" |
16 | rust-version = "1.63.0" |
17 | |
18 | [features] |
19 | vendored = ['openssl-src' ] |
20 | unstable_boringssl = ['bssl-sys' ] |
21 | aws-lc = ['dep:aws-lc-sys' ] |
22 | |
23 | [dependencies] |
24 | libc = "0.2" |
25 | bssl-sys = { version = "0.1.0" , optional = true } |
26 | aws-lc-sys = { version = "0.27" , features = ["ssl" ], optional = true } |
27 | |
28 | [build-dependencies] |
29 | bindgen = { version = "0.69.0" , optional = true, features = ["experimental" ] } |
30 | cc = "1.0.61" |
31 | openssl-src = { version = "300.2.0" , optional = true, features = ["legacy" ] } |
32 | pkg-config = "0.3.9" |
33 | vcpkg = "0.2.8" |
34 | |
35 | # We don't actually use metadeps for annoying reasons but this is still here for tooling |
36 | [package.metadata.pkg-config] |
37 | openssl = "1.0.1" |
38 | |