-
Notifications
You must be signed in to change notification settings - Fork 86
/
Cargo.toml
41 lines (37 loc) · 1.07 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
33
34
35
36
37
38
39
40
41
[package]
name = "dicom-ul"
version = "0.8.0"
authors = ["Eduardo Pinho <[email protected]>", "Paul Knopf <[email protected]>"]
description = "Types and methods for interacting with the DICOM Upper Layer Protocol"
edition = "2018"
rust-version = "1.72.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Enet4/dicom-rs"
categories = ["network-programming"]
keywords = ["dicom", "network"]
readme = "README.md"
[dependencies]
byteordered = "0.6"
bytes = "^1.6"
dicom-encoding = { path = "../encoding/", version = "0.8.0" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry/", version = "0.8.0", default-features = false }
snafu = "0.8"
tracing = "0.1.34"
[dependencies.tokio]
version = "^1.38"
optional = true
features = [
"rt",
"rt-multi-thread",
"net",
"io-util",
"time"
]
[dev-dependencies]
dicom-dictionary-std = { path = "../dictionary-std" }
matches = "0.1.8"
rstest = "0.23.0"
tokio = { version = "^1.38", features = ["io-util", "macros", "net", "rt", "rt-multi-thread"] }
[features]
async = ["dep:tokio"]
default = []