- bugfix: make sure all bytes are processed by the zstd encoder

- bump dependencies
This commit is contained in:
Wim Pomp
2024-12-23 15:29:08 +01:00
parent 49f8ab4115
commit 7fdfb7c9dc
4 changed files with 43 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "tiffwrite"
version = "2024.11.0"
version = "2024.12.0"
edition = "2021"
authors = ["Wim Pomp <w.pomp@nki.nl>"]
license = "GPL-3.0-or-later"
@@ -14,16 +14,16 @@ name = "tiffwrite"
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = "1.0.89"
chrono = "0.4.38"
anyhow = "1.0.95"
chrono = "0.4.39"
ndarray = "0.16.1"
num = "0.4.3"
rayon = "1.10.0"
zstd = "0.13.2"
numpy = { version = "0.22.0", optional = true }
numpy = { version = "0.23.0", optional = true }
[dependencies.pyo3]
version = "0.22.5"
version = "0.23.3"
features = ["extension-module", "abi3-py310", "generate-import-lib", "anyhow", "multiple-pymethods"]
optional = true