33 lines
676 B
TOML
33 lines
676 B
TOML
[package]
|
|
name = "openssl"
|
|
version = "0.10.16"
|
|
authors = ["Steven Fackler <sfackler@gmail.com>"]
|
|
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"]
|
|
|
|
# these are deprecated and don't do anything anymore
|
|
[features]
|
|
v101 = []
|
|
v102 = []
|
|
v110 = []
|
|
v111 = []
|
|
|
|
vendored = ['openssl-sys/vendored']
|
|
|
|
[dependencies]
|
|
bitflags = "1.0"
|
|
cfg-if = "0.1"
|
|
foreign-types = "0.3.1"
|
|
lazy_static = "1"
|
|
libc = "0.2"
|
|
|
|
openssl-sys = { version = "0.9.41", path = "../openssl-sys" }
|
|
|
|
[dev-dependencies]
|
|
tempdir = "0.3"
|
|
hex = "0.3"
|