forked from Enet4/dicom-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (35 loc) · 1.26 KB
/
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
30
31
32
33
34
35
36
37
38
39
[package]
name = "dicom-dump"
version = "0.8.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A CLI tool for inspecting DICOM files"
edition = "2018"
rust-version = "1.72.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Enet4/dicom-rs"
categories = ["command-line-utilities"]
keywords = ["cli", "dicom", "dump"]
readme = "README.md"
[lib]
name = "dicom_dump"
path = "src/lib.rs"
[[bin]]
name = "dicom-dump"
path = "src/main.rs"
required-features = ["cli"]
[features]
default = ["cli", "sop-class"]
sop-class = ["dicom-dictionary-std/sop-class"]
cli = ["clap", "dicom-transfer-syntax-registry/inventory-registry"]
[dependencies]
snafu = "0.8"
clap = { version = "4.0.18", features = ["derive"], optional = true }
dicom-core = { path = "../core", version = "0.8.0" }
dicom-encoding = { path = "../encoding", version = "0.8" }
dicom-json = { version = "0.8.0", path = "../json" }
dicom-object = { path = "../object/", version = "0.8.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.8.0", default-features = false }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.8.0" }
owo-colors = { version = "4.0.0-rc.1", features = ["supports-colors"] }
serde_json = "1.0.108"
terminal_size = "0.4.0"