forked from AzHicham/openslide-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (33 loc) · 925 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
[package]
name = "openslide-rs"
edition = "2021"
version = "2.1.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"
[features]
default = ["deepzoom"]
deepzoom = ["image"]
image = ["dep:image", "dep:fast_image_resize"]
openslide4 = []
[dependencies]
libc = "0.2"
thiserror = "1.0"
regex = "1.10"
lazy_static = "1.4"
openslide-sys = { version = "1.0.5" }
image = { version = "0.25", optional = true, default-features = false}
fast_image_resize = { version = "3.0", optional = true}
[dev-dependencies]
rstest = "0.19"
assert_approx_eq = "1.1"
bencher = "0.1"
version-compare = "0.2"
[[bench]]
name = "bench_read"
harness = false