forked from Enet4/dicom-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (29 loc) · 1.31 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
[package]
name = "dicom"
version = "0.8.0"
authors = ["Eduardo Pinho <[email protected]>"]
description = "A pure Rust implementation of the DICOM standard"
edition = "2018"
rust-version = "1.72.0"
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', 'pixeldata']
inventory-registry = ['dicom-encoding/inventory-registry', 'dicom-transfer-syntax-registry/inventory-registry']
ul = ['dicom-ul']
pixeldata = ['dicom-pixeldata']
image = ["pixeldata", "dicom-pixeldata/image"]
ndarray = ["pixeldata", "dicom-pixeldata/ndarray"]
[dependencies]
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-encoding = { path = "../encoding", version = "0.8.0" }
dicom-parser = { path = "../parser", version = "0.8.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.8.0" }
dicom-object = { path = "../object", version = "0.8.0", default-features = false }
dicom-ul = { optional = true, path = "../ul", version = "0.8.0" }
dicom-pixeldata = { optional = true, path = "../pixeldata", version = "0.8.0" }