[package] name = "dicom-finder" version = "0.1.5" edition = "2021" authors = ["Jermiah Joseph "] description = "A simple CLI tool and library for finding DICOM files." license = "MIT OR Apache-2.0" repository = "https://github.com/jjjermiah/dicom-finder" # Update with your actual GitHub repo URL homepage = "https://github.com/jjjermiah/dicom-finder" # You can use GitHub repo URL as homepage if no dedicated website readme = "README.md" keywords = ["cli", "dicom", "finder", "rust", "tool"] categories = ["command-line-utilities", "filesystem"] [[bin]] name = "dicom-finder" path = "src/bin/cli.rs" [dependencies] clap = { version = "4.5.19", features = ["derive"] } # Add this line dicom = "0.7.1" git2 = "0.19.0" num_cpus = "1.16.0" # rust_search = { git = "https://github.com/jjjermiah/Rust_Search/", tag = "2.1.2", version = "2.1.2"} # temporary until PR is merged, version is 2.1.0 in pkg rust_search_fork = {path = "vendor/Rust_Search", version = "2.1.3"}