[package]
edition = "2021"
rust-version = "1.94"
name = "statumen"
version = "0.3.0"
authors = ["Statumen contributors"]
build = "build.rs"
exclude = [
"benches/**",
"scripts/**",
"docs/**",
".github/**",
"typos.toml",
"architecture.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Statumen whole-slide image reader"
homepage = "https://github.com/frames-sg/statumen"
documentation = "https://docs.rs/statumen"
readme = "README.md"
keywords = [
"whole-slide",
"microscopy",
"tiff",
"pathology",
]
categories = [
"multimedia::images",
"science",
]
license = "Apache-2.0"
repository = "https://github.com/frames-sg/statumen"
[features]
bench = []
cuda = []
default = []
metal = [
"dep:metal",
"dep:signinum-jpeg-metal",
"dep:signinum-j2k-metal",
]
openslide-bench = []
parity-metal = []
parity-openslide = []
[lib]
name = "statumen"
path = "src/lib.rs"
[[bin]]
name = "wsi_bench"
path = "src/bin/wsi_bench.rs"
required-features = ["bench"]
[[bin]]
name = "openslide_bench"
path = "src/bin/openslide_bench.rs"
required-features = ["openslide-bench"]
[[bin]]
name = "bench_driver"
path = "src/bin/bench_driver.rs"
required-features = [
"bench",
"openslide-bench",
]
[[bin]]
name = "jp2k_batch_bench"
path = "src/bin/jp2k_batch_bench.rs"
required-features = ["bench"]
[[bin]]
name = "release_gate"
path = "src/bin/release_gate.rs"
required-features = [
"bench",
"openslide-bench",
]
[[bin]]
name = "svcache"
path = "src/bin/svcache.rs"
[[example]]
name = "bench_dicom_tile_batch"
path = "examples/bench_dicom_tile_batch.rs"
[[example]]
name = "extract_jpeg_tiles"
path = "examples/extract_jpeg_tiles.rs"
[[example]]
name = "fw01_trace_pattern"
path = "examples/fw01_trace_pattern.rs"
[[test]]
name = "color_regression"
path = "tests/color_regression.rs"
[[test]]
name = "dicom_parity"
path = "tests/dicom_parity.rs"
[[test]]
name = "metal_surface_smoke"
path = "tests/metal_surface_smoke.rs"
[[test]]
name = "openslide_compare"
path = "tests/openslide_compare.rs"
[[test]]
name = "openslide_parity"
path = "tests/openslide_parity.rs"
[[test]]
name = "openslide_test_support"
path = "tests/openslide_test_support.rs"
[[test]]
name = "phase3_prereq"
path = "tests/phase3_prereq.rs"
[[test]]
name = "real_wsi_behavior"
path = "tests/real_wsi_behavior.rs"
[[test]]
name = "repo_integrity"
path = "tests/repo_integrity.rs"
[[test]]
name = "signinum_parity"
path = "tests/signinum_parity.rs"
[[test]]
name = "support_unit"
path = "tests/support_unit.rs"
[[test]]
name = "zeiss_czi"
path = "tests/zeiss_czi.rs"
[[test]]
name = "zeiss_zvi"
path = "tests/zeiss_zvi.rs"
[dependencies.base64]
version = "0.22"
[dependencies.byteorder]
version = "1"
[dependencies.cfb]
version = "0.14.0"
[dependencies.czi-rs]
version = "0.1.0"
[dependencies.dicom-core]
version = "0.9"
[dependencies.dicom-dictionary-std]
version = "0.9"
[dependencies.dicom-object]
version = "0.9"
[dependencies.dicom-parser]
version = "0.9"
[dependencies.dicom-transfer-syntax-registry]
version = "0.9"
default-features = false
[dependencies.flate2]
version = "1"
[dependencies.image]
version = "0.25"
features = [
"bmp",
"png",
"pnm",
]
default-features = false
[dependencies.lru]
version = "0.18"
[dependencies.metal]
version = "0.31"
optional = true
[dependencies.quick-xml]
version = "0.36"
[dependencies.rayon]
version = "1.10"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.signinum-core]
version = "0.4"
[dependencies.signinum-j2k]
version = "0.4"
[dependencies.signinum-j2k-metal]
version = "0.4"
optional = true
[dependencies.signinum-jpeg]
version = "0.4"
[dependencies.signinum-jpeg-metal]
version = "0.4"
optional = true
[dependencies.signinum-tilecodec]
version = "0.4"
[dependencies.tempfile]
version = "3"
[dependencies.thiserror]
version = "2"
[dependencies.tracing]
version = "0.1"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.jpeg-decoder]
version = "0.3.2"
[dev-dependencies.jpeg-encoder]
version = "0.6"
[dev-dependencies.libloading]
version = "0.8"
[dev-dependencies.signinum-j2k-native]
version = "0.4"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.toml]
version = "0.8"
[build-dependencies.pkg-config]
version = "0.3"