-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
38 lines (34 loc) · 956 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "openslide-rs"
edition = "2021"
version = "2.3.0"
authors = ["AzHicham <[email protected]>"]
description = "Rust bindings of OpenSlide C library"
repository = "https://github.com/AzHicham/openslide-rs"
homepage = "https://github.com/AzHicham/openslide-rs"
readme = "README.md"
keywords = ["openslide", "histopathology", "microscopy"]
categories = ["science"]
license = "MIT/Apache-2.0"
rust-version = "1.81.0"
[features]
default = ["deepzoom"]
deepzoom = ["image"]
image = ["dep:image", "dep:fast_image_resize"]
openslide4 = []
[dependencies]
libc = "0.2"
thiserror = "2"
regex = "1"
lazy_static = "1"
openslide-sys = { version = "1" }
image = { version = "0.25", optional = true, default-features = false}
fast_image_resize = { version = "5", features = ["image"], optional = true}
[dev-dependencies]
rstest = "0.24"
assert_approx_eq = "1"
bencher = "0.1"
version-compare = "0.2"
[[bench]]
name = "bench_read"
harness = false