Files
tiffwrite/Cargo.toml
Wim Pomp 625b222a0d - some warnings
- better color(map) support
- make python module optional in rust
- max 48 threads
2024-10-12 13:19:22 +02:00

26 lines
496 B
TOML

[package]
name = "tiffwrite"
version = "2024.10.2"
edition = "2021"
[lib]
name = "tiffwrite"
crate-type = ["cdylib", "rlib"]
[dependencies]
anyhow = "1.0.89"
chrono = "0.4.38"
ndarray = "0.15.6"
num = "0.4.3"
rayon = "1.10.0"
zstd = "0.13.2"
numpy = { version = "0.22.0", optional = true }
[dependencies.pyo3]
version = "0.22.2"
features = ["extension-module", "abi3-py310", "generate-import-lib", "anyhow", "multiple-pymethods"]
optional = true
[features]
python = ["dep:pyo3", "dep:numpy"]