forked from Enet4/dicom-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
24 lines (23 loc) · 919 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
[package]
name = "dicom-storescp"
version = "0.1.1"
authors = ["Victor Saase <vsaase@gmail.com>", "Eduardo Pinho <enet4mikeenet@gmail.com>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "/~https://github.com/Enet4/dicom-rs"
description = "A server accepting DICOM C-STORE"
categories = ["command-line-utilities"]
keywords = ["dicom", "store"]
readme = "README.md"
[dependencies]
clap = { version = "4.0.18", features = ["derive"] }
dicom-core = { path = '../core', version = "0.5.3" }
dicom-ul = { path = '../ul', version = "0.4.4" }
dicom-object = { path = '../object', version = "0.5.4" }
dicom-encoding = { path = "../encoding/", version = "0.5.3" }
dicom-dictionary-std = { path = "../dictionary-std/", version = "0.5.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.5.1" }
smallvec = "1.6.1"
snafu = "0.7.3"
tracing = "0.1.36"
tracing-subscriber = "0.3.15"