Skip to content

Commit

Permalink
docs and meta
Browse files Browse the repository at this point in the history
  • Loading branch information
radumarias committed Jun 1, 2024
1 parent bae1d44 commit 879aeac
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zeroize"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
14 changes: 13 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,24 @@ build-backend = "maturin"

[project]
name = "zeroize"
requires-python = ">=3.8"
authors = [
{ name="Radu Marias", email="[email protected]" },
]
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. Uses a portable pure Rust implementation that works everywhere."
readme = "README.md"
keywords = ["memory", "volatile", "secure", "memset", "zero"]

requires-python = ">=3.7"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"License :: OSI Approved :: Apache Software License",
]
dynamic = ["version"]
[tool.maturin]
features = ["pyo3/extension-module"]

[project.urls]
Homepage = "https://github.com/radumarias/zeroize-python"
Issues = "https://github.com/radumarias/zeroize-python/issues"

0 comments on commit 879aeac

Please sign in to comment.