Skip to content

Commit

Permalink
Bump pyo3, numpy and expand pyproject.toml (#90)
Browse files Browse the repository at this point in the history
Closes #89

* Bump pyo3, numpy and expand pyproject.toml
* Update Cargo.toml

Co-authored-by: messense <[email protected]>
  • Loading branch information
milesgranger and messense authored Nov 9, 2022
1 parent 3437687 commit 62458cd
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 17 deletions.
72 changes: 59 additions & 13 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "cramjam"
version = "2.6.1"
version = "2.6.2"
authors = ["Miles Granger <[email protected]>"]
edition = "2018"
license-file = "LICENSE"
license = "MIT"
description = "Thin Python bindings to de/compression algorithms in Rust"
readme = "README.md"

Expand All @@ -22,14 +22,14 @@ codegen-units = 1
opt-level = 3

[dependencies]
pyo3 = { version = "0.16", default-features = false, features = ["macros"] }
pyo3 = { version = "^0.17", default-features = false, features = ["macros"] }
snap = "^1"
brotli = { version = "^3", default-features = false, features = ["std"] }
bzip2 = "^0.4"
lz4 = "^1"
flate2 = "^1"
zstd = "0.11.1+zstd.1.5.2"
numpy = "0.16"
numpy = "^0.17"

[dependencies.mimalloc]
version = "0.1.24"
Expand Down
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
[project]
name = "cramjam"
keywords = ["compression", "decompression", "snappy", "zstd", "bz2", "gzip", "lz4", "brotli", "deflate"]
requires-python = ">=3.7"

[project.urls]
homepage = "https://github.com/milesgranger/pyrus-cramjam"
documentation = "https://docs.rs/cramjam/latest/cramjam"
repository = "https://github.com/milesgranger/pyrus-cramjam"

[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"

0 comments on commit 62458cd

Please sign in to comment.