-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathCargo.toml
More file actions
74 lines (68 loc) · 1.7 KB
/
Copy pathCargo.toml
File metadata and controls
74 lines (68 loc) · 1.7 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[package]
name = "dicom-ul"
version = "0.10.0"
authors = ["Eduardo Pinho <enet4mikeenet@gmail.com>", "Paul Knopf <pauldotknopf@gmail.com>"]
description = "Types and methods for interacting with the DICOM Upper Layer Protocol"
edition = "2024"
rust-version = "1.85.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.11.1"
cfg-if = "1.0.3"
dicom-encoding = { path = "../encoding/", version = "0.10" }
dicom-transfer-syntax-registry = { path = "../transfer-syntax-registry", version = "0.10", default-features = false }
snafu = "0.9"
tracing = "0.1.34"
[dependencies.tokio]
version = "^1.38"
optional = true
features = [
"rt",
"rt-multi-thread",
"net",
"io-util",
"time"
]
[dependencies.rustls]
version = "0.23.31"
optional = true
default-features = false
features = [
"logging",
"tls12",
"std"
]
[dependencies.tokio-rustls]
version = "0.26.2"
optional = true
default-features = false
features = [
"logging",
"tls12",
]
[dev-dependencies]
dicom-dictionary-std = { path = "../dictionary-std" }
matches = "0.1.8"
rstest = "0.26.1"
tokio = { version = "^1.38", features = ["io-util", "macros", "net", "rt", "rt-multi-thread"] }
dicom-core = { path = '../core' }
dicom-object = { path = '../object' }
time = "0.3.47"
rustls-cert-gen = "0.2.0"
rcgen = "0.14.4"
# Install full features of rustls for testing
rustls = "0.23.31"
[features]
default = []
async = ["dep:tokio"]
sync-tls = ["dep:rustls"]
async-tls = ["async", "sync-tls", "dep:tokio-rustls"]
tls = ["sync-tls"]
full = ["async-tls"]
[package.metadata.docs.rs]
features = ["async", "tls"]