forked from AzHicham/philips-isyntax-rs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
33 lines (28 loc) · 829 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
[package]
name = "philips-isyntax-rs"
edition = "2021"
version = "1.1.3"
authors = ["AzHicham <[email protected]>"]
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/Apache-2.0"
[features]
default = ["image"]
image = ["dep:image"]
[dependencies]
thiserror = "1.0"
cxx = "1.0"
rand = "0.8.5"
image = { version = "0.24", optional = true, default-features = false, features = ["jpeg"] }
[build-dependencies]
cxx-build = "1.0"
[dev-dependencies]
rstest = "0.18"
bencher = "0.1"
[[bench]]
name = "bench_read"
harness = false