-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (32 loc) · 1.15 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# cargo-features = ["profile-rustflags"]
[package]
name = "zeroize"
description = "Securely clear secrets from memory. Built on stable Rust primitives which guarantee memory is zeroed using an operation will not be 'optimized away' by the compiler."
version = "1.1.2"
edition = "2021"
license = "Apache-2.0 OR MIT"
authors = ["Radu Marias <[email protected]>"]
homepage = "https://radumarias.github.io/zeroize-python"
repository = "https://github.com/radumarias/zeroize-python"
readme = "README.md"
keywords = ["memory", "volatile", "secure", "memset", "zero"]
categories = ["cryptography", "memory-management", "os", "no-std"]
documentation = "https://github.com/radumarias/zeroize-python"
exclude = [".github/"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "zeroize"
crate-type = ["cdylib"]
[dependencies]
pyo3 = "0.21.2"
zeroize_rs = { version = "1.8.1", package = "zeroize" }
numpy = "0.21"
memsec = "0.7.0"
[profile.release]
panic = "abort"
# Treat warnings as errors in release builds
# rustflags = ["-Dwarnings"]
lto = true
[lints.clippy]
too_many_arguments = "allow"
module_name_repetitions = "allow"