mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-01-27 05:52:19 +01:00
26 lines
620 B
TOML
26 lines
620 B
TOML
[package]
|
|
name = "wolfssl-wolfcrypt"
|
|
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"
|