- add deflate compression

This commit is contained in:
Wim Pomp
2025-03-27 15:32:31 +01:00
parent 9ee8fc1029
commit 12d5d3355b
4 changed files with 161 additions and 57 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "tiffwrite"
version = "2025.2.0"
version = "2025.3.0"
edition = "2021"
authors = ["Wim Pomp <w.pomp@nki.nl>"]
license = "MIT"
@@ -16,16 +16,17 @@ name = "tiffwrite"
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = "1.0.95"
chrono = "0.4.39"
anyhow = "1.0.97"
chrono = "0.4.40"
flate2 = "1.1.0"
ndarray = "0.16.1"
num = "0.4.3"
rayon = "1.10.0"
zstd = "0.13.2"
numpy = { version = "0.23.0", optional = true }
zstd = "0.13.3"
numpy = { version = "0.24.0", optional = true }
[dependencies.pyo3]
version = "0.23.4"
version = "0.24.0"
features = ["extension-module", "abi3-py310", "generate-import-lib", "anyhow", "multiple-pymethods"]
optional = true