[package] name = "pamly" description = "Command line interface for digital pathology tools." authors = ["Michael Huttner"] license = "MIT" readme = "README.md" homepage = "https://github.com/spang-lab/pamly-lib" repository = "https://github.com/spang-lab/pamly-lib" keywords = ["cli"] categories = ["command-line-utilities"] version = "0.3.5" edition = "2021" exclude = ["index.node"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [lib] name = "pamly" crate-type = ["cdylib", "lib"] [[bin]] name = "pamly" path = "src/main.rs" [features] default = [] convert = ["dep:libc"] [dependencies] anyhow = "1.0.86" clap = { version = "4.5", features = ["derive"] } image = "0.25.2" imageproc = "0.25.0" libc = { version="0.2.158", optional = true } log = "0.4.22" pyo3 = { version="0.22.2", features=["anyhow"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" simple_logger = "4.3.3" sqlite = "0.32.0" strum = { version ="0.25.0", features=["derive"] }