1 | [package] |
2 | name = "openssl" |
3 | version = "0.10.64" |
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 = "2018" |
12 | |
13 | # these are deprecated and don't do anything anymore |
14 | [features] |
15 | v101 = [] |
16 | v102 = [] |
17 | v110 = [] |
18 | v111 = [] |
19 | |
20 | vendored = ['ffi/vendored' ] |
21 | bindgen = ['ffi/bindgen' ] |
22 | unstable_boringssl = ["ffi/unstable_boringssl" ] |
23 | default = [] |
24 | |
25 | [dependencies] |
26 | bitflags = "2.2.1" |
27 | cfg-if = "1.0" |
28 | foreign-types = "0.3.1" |
29 | libc = "0.2" |
30 | once_cell = "1.5.2" |
31 | |
32 | openssl-macros = { version = "0.1.0" , path = "../openssl-macros" } |
33 | ffi = { package = "openssl-sys" , version = "0.9.100" , path = "../openssl-sys" } |
34 | |
35 | [dev-dependencies] |
36 | hex = "0.3" |
37 | |