Files
wolfssl/wrapper/rust/wolfssl-sys/Cargo.toml
Josh Holtrop 167e76add4 Create initial Rust wrapper structure
Generate bindings to C library with bindgen
Add github CI workflow to build Rust wrapper
2025-09-12 15:49:56 -04:00

18 lines
221 B
TOML

[package]
name = "wolfssl-sys"
version = "0.1.0"
edition = "2024"
[features]
std = []
[build-dependencies]
bindgen = "0.72.1"
[profile.release]
strip = true
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"