-
Notifications
You must be signed in to change notification settings - Fork 86
/
Cargo.toml
35 lines (32 loc) · 1.17 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
[package]
name = "dicom-storescu"
version = "0.8.0"
authors = ["Eduardo Pinho <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Enet4/dicom-rs"
description = "A DICOM C-ECHO command line interface"
categories = ["command-line-utilities"]
keywords = ["dicom"]
readme = "README.md"
[features]
default = ["transcode"]
# support DICOM transcoding
transcode = ["dep:dicom-pixeldata"]
[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-encoding = { path = "../encoding/", version = "0.8.0" }
dicom-object = { path = '../object', version = "0.8.0" }
dicom-pixeldata = { version = "0.8.0", path = "../pixeldata", optional = true }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.8.0" }
dicom-ul = { path = '../ul', version = "0.8.0", features = ["async"] }
walkdir = "2.3.2"
indicatif = "0.17.0"
tracing = "0.1.34"
tracing-subscriber = "0.3.11"
snafu = "0.8"
[dependencies.tokio]
version = "1.38.0"
features = ["rt", "rt-multi-thread", "macros", "sync"]