| 1 | [package] |
| 2 | name = "openssl" |
| 3 | version = "0.10.72" |
| 4 | authors = ["Steven Fackler <sfackler@gmail.com>" ] |
| 5 | license = "Apache-2.0" |
| 6 | description = "OpenSSL bindings" |
| 7 | repository = "https://github.com/sfackler/rust-openssl" |
| 8 | readme = "README.md" |
| 9 | keywords = ["crypto" , "tls" , "ssl" , "dtls" ] |
| 10 | categories = ["cryptography" , "api-bindings" ] |
| 11 | edition = "2021" |
| 12 | rust-version = "1.63.0" |
| 13 | |
| 14 | # these are deprecated and don't do anything anymore |
| 15 | [features] |
| 16 | v101 = [] |
| 17 | v102 = [] |
| 18 | v110 = [] |
| 19 | v111 = [] |
| 20 | |
| 21 | vendored = ['ffi/vendored' ] |
| 22 | bindgen = ['ffi/bindgen' ] |
| 23 | unstable_boringssl = ["ffi/unstable_boringssl" ] |
| 24 | aws-lc = ["ffi/aws-lc" ] |
| 25 | default = [] |
| 26 | |
| 27 | [dependencies] |
| 28 | bitflags = "2.2.1" |
| 29 | cfg-if = "1.0" |
| 30 | foreign-types = "0.3.1" |
| 31 | libc = "0.2" |
| 32 | once_cell = "1.5.2" |
| 33 | |
| 34 | openssl-macros = { version = "0.1.1" , path = "../openssl-macros" } |
| 35 | ffi = { package = "openssl-sys" , version = "0.9.107" , path = "../openssl-sys" } |
| 36 | |
| 37 | [dev-dependencies] |
| 38 | hex = "0.4" |
| 39 | |