forked from Enet4/dicom-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (23 loc) · 978 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
[package]
name = "dicom-toimage"
version = "0.8.0"
edition = "2018"
rust-version = "1.72.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A CLI tool for converting DICOM files into general purpose image 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', 'dicom-pixeldata/native', 'dicom-pixeldata/jpegxl']
[dependencies]
clap = { version = "4.0.18", features = ["derive"] }
dicom-core = { version = "0.8.0", path = "../core" }
dicom-dictionary-std = { version = "0.8.0", path = "../dictionary-std" }
dicom-object = { path = "../object/", version = "0.8.0" }
dicom-pixeldata = { path = "../pixeldata/", version = "0.8.0", default-features = false, features = ["image", "rayon"] }
snafu = "0.8"
tracing = "0.1.34"
tracing-subscriber = "0.3.11"