-
Notifications
You must be signed in to change notification settings - Fork 84
/
Cargo.toml
23 lines (22 loc) · 903 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
[package]
name = "dicom-echoscu"
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"
[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-dump = { version = "0.8.0", path = "../dump", default-features = false }
dicom-object = { path = "../object/", version = "0.8.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.8.0", default-features = false }
dicom-ul = { path = "../ul", version = "0.8.0" }
snafu = "0.8"
tracing = "0.1.34"
tracing-subscriber = "0.3.11"