[package] name = "dicom-fromimage" version = "0.8.0" edition = "2018" rust-version = "1.72.0" authors = ["Eduardo Pinho "] description = "A CLI tool for replacing the image content from DICOM files" license = "MIT OR Apache-2.0" repository = "https://github.com/Enet4/dicom-rs" categories = ["command-line-utilities"] keywords = ["cli", "dicom", "image", "image-conversion"] readme = "README.md" [features] default = ['dicom-object/inventory-registry'] [dependencies] clap = { version = "4.0.18", features = ["derive"] } dicom-core = { path = "../core", version = "0.8.0" } dicom-dictionary-std = { path = "../dictionary-std/", version = "0.8.0" } dicom-object = { path = "../object/", version = "0.8.0" } snafu = "0.8" tracing = "0.1.34" tracing-subscriber = "0.3.11" [dependencies.image] version = "0.25.1" default-features=false features = ["jpeg", "png", "pnm", "tiff", "webp", "bmp", "rayon", "exr"]