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