-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (52 loc) · 1.29 KB
/
Cargo.toml
File metadata and controls
62 lines (52 loc) · 1.29 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "philips-isyntax-rs"
edition = "2024"
version = "1.4.0"
authors = ["AzHicham <hicham.azimani1@gmail.com>"]
description = "Rust bindings to the Philips Open Pathology C++ library"
repository = "https://github.com/AzHicham/philips-isyntax-rs"
homepage = "https://github.com/AzHicham/philips-isyntax-rs"
readme = "README.md"
keywords = ["philips", "isyntax", "histopathology", "microscopy"]
categories = ["science", "external-ffi-bindings"]
license = "MIT OR Apache-2.0"
rust-version = "1.87.0"
[features]
default = ["image"]
image = ["dep:image", "dep:fast_image_resize"]
[dependencies]
[dependencies.thiserror]
version = "2"
default-features = false
features = []
[dependencies.cxx]
version = "1"
default-features = false
features = ["std", "c++17"]
[dependencies.image]
version = "0.25"
default-features = false
features = ["jpeg"]
optional = true
[dependencies.fast_image_resize]
version = "6"
default-features = false
features = ["image"]
optional = true
[dev-dependencies]
[dev-dependencies.rstest]
version = "0.26"
default-features = false
features = []
[dev-dependencies.bencher]
version = "0.1"
default-features = false
features = []
[build-dependencies]
[build-dependencies.cxx-build]
version = "1"
default-features = false
features = []
[[bench]]
name = "bench_read"
harness = false