-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
98 lines (83 loc) · 2.54 KB
/
Cargo.toml
File metadata and controls
98 lines (83 loc) · 2.54 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
[workspace]
resolver = "2"
members = [
"crates/leaf-core",
"crates/leaf-db",
"crates/leaf-dicom",
"crates/leaf-net",
"crates/leaf-render",
"crates/leaf-viewer",
"crates/leaf-tools",
"crates/leaf-ui",
"crates/leaf-app",
]
[workspace.package]
version = "0.1.1"
edition = "2021"
rust-version = "1.85"
license = "MIT OR Apache-2.0"
repository = "https://github.com/knopkem/pacsleaf"
keywords = ["dicom", "medical-imaging", "pacs", "radiology", "viewer"]
categories = ["science", "visualization", "gui"]
[workspace.dependencies]
# Internal crates
leaf-core = { path = "crates/leaf-core", version = "0.1.1" }
leaf-db = { path = "crates/leaf-db", version = "0.1.1" }
leaf-dicom = { path = "crates/leaf-dicom", version = "0.1.1" }
leaf-net = { path = "crates/leaf-net", version = "0.1.1" }
leaf-render = { path = "crates/leaf-render", version = "0.1.1" }
leaf-viewer = { path = "crates/leaf-viewer", version = "0.1.1" }
leaf-tools = { path = "crates/leaf-tools", version = "0.1.1" }
leaf-ui = { path = "crates/leaf-ui", version = "0.1.1" }
# Published imaging/network crates
dicom-toolkit-core = "0.5.0"
dicom-toolkit-dict = "0.5.0"
dicom-toolkit-data = "0.5.0"
dicom-toolkit-net = "0.5.0"
dicom-toolkit-image = "0.5.0"
dicom-toolkit-codec = "0.5.0"
volren-core = { path = "../volren-rs/crates/volren-core" }
volren-gpu = { path = "../volren-rs/crates/volren-gpu" }
# GUI
slint = { version = "1.12", features = ["unstable-wgpu-24"] }
# Async runtime
tokio = { version = "1", features = ["full"] }
# Database
redb = "2"
# HTTP client (for DICOMweb)
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json", "multipart"] }
# Math (consistent with volren-rs)
glam = { version = "0.29", features = ["bytemuck", "serde"] }
# GPU
wgpu = { version = "24", features = ["spirv"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Error handling
thiserror = "2"
anyhow = "1"
# Utilities
bytemuck = { version = "1", features = ["derive"] }
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
directories = "6"
rayon = "1"
parking_lot = "0.12"
bytes = "1"
base64 = "0.22"
lru = "0.16.3"
image = { version = "0.25", default-features = false, features = ["png", "jpeg"] }
rfd = "0.15"
pollster = "0.4"
ustreamer-proto = "0.1.0"
ustreamer-transport = "0.1.0"
[profile.dev]
opt-level = 1
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"