[package]
edition = "2021"
name = "wolfcrypt-tls"
version = "0.1.4"
authors = ["WolfSSL Inc"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe Rust TLS API backed by wolfSSL"
homepage = "http://wolfssl.com"
readme = "README.md"
keywords = [
"wolfcrypt",
"wolfssl",
"tls",
"fips",
"cryptography",
]
categories = ["cryptography"]
license = "GPL-3.0-only OR LicenseRef-wolfSSL-commercial"
repository = "https://github.com/wolfSSL/wolfssl-rs"
[features]
default = []
fips = ["wolfcrypt-sys/fips"]
vendored = ["wolfcrypt-sys/vendored"]
[lib]
name = "wolfssl"
path = "src/lib.rs"
[[test]]
name = "tls_client"
path = "tests/tls_client.rs"
[[test]]
name = "tls_server"
path = "tests/tls_server.rs"
[dependencies.wolfcrypt-sys]
version = "0.1.3"
[dependencies.zeroize]
version = "1.8.1"
[dev-dependencies]