-
Notifications
You must be signed in to change notification settings - Fork 82
/
Cargo.toml
29 lines (26 loc) · 934 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
[package]
name = "dicom-fromimage"
version = "0.8.0"
edition = "2018"
rust-version = "1.72.0"
authors = ["Eduardo Pinho <[email protected]>"]
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"]