aboutsummaryrefslogtreecommitdiff
path: root/openssl/Cargo.toml
blob: bbda4415fe564a410289cedeeac4d54125755544 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "openssl"
version = "0.9.23"
authors = ["Steven Fackler <[email protected]>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
repository = "https://github.com/sfackler/rust-openssl"
readme = "README.md"
keywords = ["crypto", "tls", "ssl", "dtls"]
categories = ["cryptography", "api-bindings"]
build = "build.rs"

[package.metadata.docs.rs]
all-features = true

[features]
v101 = []
v102 = []
v110 = []

[dependencies]
bitflags = "1.0"
foreign-types = "0.3.1"
lazy_static = "1"
libc = "0.2"
openssl-sys = { version = "0.9.24", path = "../openssl-sys" }

[dev-dependencies]
tempdir = "0.3"
hex = "0.3"
data-encoding = "2.0"