aboutsummaryrefslogtreecommitdiff
path: root/openssl/Cargo.toml
blob: 1417bea7de060dd006fd311bd46a9c137736ef8f (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
[package]
name = "openssl"
version = "0.9.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/v0.9.0/openssl"
readme = "../README.md"
keywords = ["crypto", "tls", "ssl", "dtls"]
build = "build.rs"
exclude = ["test/*"]

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

[dependencies]
bitflags = "0.7"
lazy_static = "0.2"
libc = "0.2"
openssl-sys = { version = "0.9", path = "../openssl-sys" }

[dev-dependencies]
rustc-serialize = "0.3"
tempdir = "0.3"
winapi = "0.2"
ws2_32-sys = "0.2"