[package]
edition = "2021"
rust-version = "1.71.0"
name = "wolfcrypt-rs"
version = "0.1.4"
authors = ["WolfSSL Inc"]
build = "build.rs"
links = "wolfssl"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Low-level FFI bindings for wolfSSL/wolfCrypt cryptographic library."
homepage = "http://wolfssl.com"
readme = "README.md"
keywords = [
"wolfcrypt",
"wolfssl",
"fips",
"cryptography",
]
categories = ["cryptography"]
license = "GPL-3.0-only OR LicenseRef-wolfSSL-commercial"
repository = "https://github.com/wolfSSL/wolfssl-rs"
[features]
cryptocb-only = ["wolfcrypt-sys/cryptocb-only"]
cryptocb-pure = ["wolfcrypt-sys/cryptocb-pure"]
default = []
fips = ["wolfcrypt-sys/fips"]
riscv-bare-metal = ["wolfcrypt-sys/riscv-bare-metal"]
[lib]
name = "wolfcrypt_rs"
path = "src/lib.rs"
[[test]]
name = "aead_shim_tests"
path = "tests/aead_shim_tests.rs"
[[test]]
name = "links"
path = "tests/links.rs"
[[test]]
name = "rsa_lifecycle"
path = "tests/rsa_lifecycle.rs"
[[test]]
name = "sanity-tests"
path = "tests/sanity-tests.rs"
[[test]]
name = "shim_tests"
path = "tests/shim_tests.rs"
[dependencies.wolfcrypt-sys]
version = "0.1.3"
features = ["vendored"]
default-features = false
[build-dependencies.cc]
version = "1.2.26"
features = ["parallel"]