aboutsummaryrefslogtreecommitdiff
path: root/openssl/Cargo.toml
blob: 8c7074b11cb9566b3f455dbbdbf975259110fcf9 (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.5.0"
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.5.0"

[dependencies]
libc = "0.1"

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