Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 11 additions & 59 deletions Cargo.lock

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

7 changes: 3 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,20 @@
name = "py-ed25519-zebra-bindings"
description = "Python bindings for the ed25519-zebra RUST crate"
authors=["Stichting Polkascan (Polkascan Foundation)"]
version = "1.1.0"
version = "1.2.0"
repository = "https://github.com/polkascan/py-ed25519-zebra-bindings"
homepage = "https://github.com/polkascan/py-ed25519-zebra-bindings"
license = "Apache-2.0"
readme = "README.md"
edition = "2018"
edition = "2021"

[dependencies]
ed25519-zebra = { version = "4.0.3", default-features = false}
rand = "0.8.5"

[lib]
name = "ed25519_zebra"
crate-type = ["cdylib"]

[dependencies.pyo3]
version = "0.22.5"
version = "0.23.3"
features = ["extension-module"]
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "py-ed25519-zebra-bindings"
version = "1.1.0"
version = "1.2.0"
description = "Python bindings for the ed25519-zebra RUST crate"
readme = "README.md"
requires-python = ">=3.9"
Expand All @@ -22,7 +22,8 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]

[project.urls]
Expand Down
Loading