aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys/Cargo.toml
blob: d510b938c46df7502e2e25b641c57809106cfdd0 (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
[package]
name = "openssl-sys"
version = "0.9.36"
authors = ["Alex Crichton <[email protected]>",
           "Steven Fackler <[email protected]>"]
license = "MIT"
description = "FFI bindings to OpenSSL"
repository = "https://github.com/sfackler/rust-openssl"
readme = "README.md"
categories = ["cryptography", "external-ffi-bindings"]
links = "openssl"
build = "build/main.rs"

[features]
vendored = ['openssl-src']

[dependencies]
libc = "0.2"

[build-dependencies]
pkg-config = "0.3.9"
cc = "1.0"
openssl-src = { version = "110.0.4", optional = true }

[target.'cfg(target_env = "msvc")'.build-dependencies]
vcpkg = "0.2"

# We don't actually use metadeps for annoying reasons but this is still here for tooling
[package.metadata.pkg-config]
openssl = "1.0.1"