libsoliton/soliton_py/Cargo.toml
Kamal Tufekcic 9ba7ea2def
initial commit
Signed-off-by: Kamal Tufekcic <kamal@lo.sh>
2026-04-23 15:52:12 +03:00

22 lines
657 B
TOML

[package]
name = "soliton-python"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
authors.workspace = true
description = "Python bindings for libsoliton — post-quantum cryptographic library"
categories = ["cryptography", "api-bindings"]
keywords = ["post-quantum", "soliton", "python", "pyo3"]
# Not published to crates.io — distributed via PyPI as a maturin wheel.
publish = false
[lib]
name = "soliton"
crate-type = ["cdylib"]
[dependencies]
libsoliton = { workspace = true }
pyo3 = { version = "0.28", features = ["extension-module"] }
zeroize = { workspace = true }