-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 700 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 700 Bytes
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
[package]
name = "dicom-toolkit-codec"
description = "DICOM image compression codecs: JPEG, JPEG-LS, RLE, and codec registry"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
keywords.workspace = true
categories.workspace = true
[dependencies]
dicom-toolkit-core.workspace = true
dicom-toolkit-dict.workspace = true
dicom-toolkit-data.workspace = true
dicom-toolkit-jpeg2000.workspace = true
jpeg-decoder.workspace = true
jpeg-encoder.workspace = true
flate2.workspace = true
inventory.workspace = true
tracing.workspace = true
[dev-dependencies]
proptest.workspace = true
tempfile = "3"