aboutsummaryrefslogtreecommitdiff
path: root/openssl/Cargo.toml
blob: 110c381354268a28825da2f69cf99d11c7d47060 (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
[package]
name = "openssl"
version = "0.4.3"
authors = ["Steven Fackler <[email protected]>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
repository = "https://github.com/sfackler/rust-openssl"
documentation = "https://sfackler.github.io/rust-openssl/doc/openssl"
readme = "../README.md"
keywords = ["crypto", "tls", "ssl"]

[features]
tlsv1_2 = ["openssl-sys/tlsv1_2"]
tlsv1_1 = ["openssl-sys/tlsv1_1"]
sslv2 = ["openssl-sys/sslv2"]
aes_xts = ["openssl-sys/aes_xts"]

[dependencies.openssl-sys]
path = "../openssl-sys"
version = "0.4.3"

[dev-dependencies]
rustc-serialize = "0.2"

[dependencies]
bitflags = "0.1.1"