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