forked from Enet4/dicom-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 1.04 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
[package]
name = "dicom"
version = "0.4.0"
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>"]
description = "A pure Rust implementation of the DICOM standard"
edition = "2018"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Enet4/dicom-rs"
readme = "README.md"
[badges]
maintenance = { status = "actively-developed" }
[features]
default = ['inventory-registry', 'ul']
inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-syntax-registry/inventory-registry']
backtraces = ['dicom-object/backtraces']
ul = ['dicom-ul']
[dependencies]
dicom-core = { path = "../core", version = "0.4.0" }
dicom-dictionary-std = { path = "../dictionary-std", version = "0.4.0" }
dicom-encoding = { path = "../encoding", version = "0.4.0" }
dicom-parser = { path = "../parser", version = "0.4.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.4.0" }
dicom-object = { path = "../object", version = "0.4.0", default-features = false }
dicom-ul = { optional = true, path = "../ul", version = "0.3.0" }