bcrypt/src/_bcrypt/Cargo.toml
2026-03-03 23:31:58 -06:00

29 lines
547 B
TOML

[package]
name = "bcrypt-rust"
version = "0.1.0"
authors = ["The bcrypt developers <cryptography-dev@python.org>"]
edition = "2024"
# This specifies the MSRV
rust-version = "1.85"
publish = false
[dependencies]
pyo3 = { version = "0.28", features = ["abi3"] }
bcrypt = "0.19"
bcrypt-pbkdf = "0.10.0"
base64 = "0.22.1"
subtle = "2.6"
getrandom = "0.4"
[features]
extension-module = ["pyo3/extension-module"]
default = ["extension-module"]
[lib]
name = "bcrypt_rust"
crate-type = ["cdylib"]
[profile.release]
lto = "thin"
overflow-checks = true