-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (26 loc) · 938 Bytes
/
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
[package]
name = "pypx_dicomweb"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dicom = "0.6.1"
dicom-json = "0.1.0"
pathdiff = "0.2.1"
serde = { version = "1.0.188", features = [] }
serde_json = "1.0.107"
thiserror = "1.0.48"
tokio = { version = "1.32.0", features = ["fs", "rt-multi-thread", "rt", "macros"] }
pypx = { path = "../pypx" }
futures = "0.3.28"
tokio-stream = { version = "0.1.14", features = ["fs"] }
axum = { version = "0.6.20", features = ["multipart", "headers"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["json", "env-filter"] }
tower-http = { version = "0.4.4", features = ["cors"] }
tokio-util = { version = "0.7.9", features = ["io"] }
image = "0.24.7"
dicom-pixeldata = { version = "0.2.0", features = ["image"] }
axum-prometheus = "0.4.0"
[dev-dependencies]
rstest = "0.18.2"