Files
wolfssl/wrapper/rust/wolfssl-wolfcrypt/Cargo.toml

26 lines
620 B
TOML
Raw Normal View History

[package]
name = "wolfssl-wolfcrypt"
2025-12-16 10:04:15 -05:00
version = "1.0.0"
edition = "2024"
description = "Rust wrapper for wolfssl C library cryptographic functionality"
license = "GPL-3.0"
repository = "https://github.com/wolfSSL/wolfssl"
documentation = "https://github.com/wolfSSL/wolfssl/tree/master/wrapper/rust"
keywords = ["wolfssl", "fips", "security", "encryption", "cryptography"]
categories = ["cryptography", "security", "api-bindings"]
readme = "README.md"
[features]
std = []
[build-dependencies]
bindgen = "0.72.1"
regex = "1.5"
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"