[package] name = "tikv-openssl-src" version = "111.10.3+1.1.1g" authors = ["Jay Lee "] license = "MIT/Apache-2.0" readme = "README.md" repository = "https://github.com/busyjay/openssl-src-rs" description = """ Source of OpenSSL and logic to build it. """ exclude = [ 'openssl/boringssl/*', 'openssl/fuzz/*', 'openssl/krb5/*', 'openssl/pyca-cryptography/*', 'openssl/test/*', ] [features] 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 = [] [workspace] members = ['testcrate'] [dependencies] cc = "1.0"