forked from Enet4/dicom-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 1 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
[package]
name = "dicom-object"
version = "0.5.4"
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Enet4/dicom-rs"
description = "A high-level API for reading and manipulating DICOM objects"
keywords = ["dicom", "object", "attributes"]
readme = "README.md"
[features]
default = []
inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-syntax-registry/inventory-registry']
backtraces = ['snafu/backtraces']
[dependencies]
dicom-core = { path = "../core", version = "0.5.3" }
dicom-encoding = { path = "../encoding", version = "0.5.3" }
dicom-parser = { path = "../parser", 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" }
itertools = "0.10"
byteordered = "0.6"
smallvec = "1.6.1"
snafu = "0.7.3"
tracing = "0.1.34"
[dev-dependencies]
tempfile = "3.2.0"
dicom-test-files = "0.2.1"