This repository was archived by the owner on Jun 8, 2023. It is now read-only.
forked from alexcrichton/openssl-src-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
65 lines (60 loc) · 1.94 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "openssl-src"
version = "111.22.0+1.1.1q"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/alexcrichton/openssl-src-rs"
description = """
Source of OpenSSL and logic to build it.
"""
exclude = [
'openssl/boringssl/*',
'openssl/fuzz/*',
'openssl/krb5/*',
'openssl/pyca-cryptography/*',
'openssl/test/*',
'openssl/wycheproof/*',
]
[lib]
path = "src/combined.rs"
[features]
# Enables features which are neccassary to make openssl ready for fuzzing, somehow I'm ont able to patch these in,
# therefore we need to specify them here.
default = [ ]
# Enables compilation of some older algorithms: md2 (hash), rc5 (block cypher) and enabled use of
# some weaker algorithms in SSL connections. These are generally not recommended for use.
weak-crypto = []
# Enables compilation of the Camellia symmetric key block cypher. Since hardware acceleration for
# it is not available on most systems, this is not as used as AES.
camellia = []
# Enables compilation of International Data Encryption Algorithm (IDEA), a symmetric key block
# cypher sometimes used as an AES128 alternative.
idea = []
# Enables compilation of SEED, a symmetric key block cypher mostly used in South Korea, but
# otherwise not widely supported.
seed = []
# Forces configuring Engine module support.
force-engine = []
# Uses clang to compile OpenSSL with sancov support
sancov = ["libressl-src?/sancov"]
# Deterministic random
no-rand = []
# Enables -fsanitize=address
asan = ["libressl-src?/asan"]
# Use openssl101f submodule
openssl101f = []
# Use openssl102u submodule
openssl102u = []
openssl111k = []
openssl111j = []
libressl333 = [ "libressl-src", "libressl", "libressl-src/vendored-libressl333" ]
libressl = [ ]
[workspace]
members = ['testcrate']
exclude = ['target']
[dependencies]
cc = "1.0"
bindgen = "0.60.1"
security-claims = "0.1.0"
libressl-src = { version = "111.0.0", optional = true }