Skip to content
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,9 @@ jobs:
strategy:
matrix:
platform:
- runner: macos-14
- runner: macos-15-intel
target: x86_64
- runner: macos-14
- runner: macos-15
target: aarch64
steps:
- uses: actions/checkout@v4
Expand Down
177 changes: 122 additions & 55 deletions Cargo.lock

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

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
name = "py-bip39-bindings"
description = "Python bindings for tiny-bip39 RUST crate"
authors=["JAMdot Technologies"]
version = "0.3.0"
version = "0.3.1"
repository = "https://github.com/polkascan/py-bip39-bindings"
homepage = "https://github.com/polkascan/py-bip39-bindings"
license = "Apache-2.0"
readme = "README.md"
edition = "2021"

[dependencies]
hmac = "0.12.1"
pbkdf2 = { version = "0.12.2", default-features = false }
sha2 = "0.10.9"
hmac = "0.13.0"
pbkdf2 = { version = "0.13.0", default-features = false }
sha2 = "0.11.0"
tiny-bip39 = { version = "2.0.0", default-features = true }

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

[dependencies.pyo3]
version = "0.26.0"
version = "0.29.0"
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-bip39-bindings"
version = "0.3.0"
version = "0.3.1"
description = "Python bindings for tiny-bip39 RUST crate"
readme = "README.md"
requires-python = ">=3.9"
Expand All @@ -23,7 +23,8 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]

[project.urls]
Expand Down
Loading