-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (42 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
44 lines (42 loc) · 1.25 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
[package]
name = "jmix-rs"
version = "0.3.2"
edition = "2021"
authors = ["Aurabox <hello@aurabox.cloud>"]
description = "Rust library for JMIX (JSON Medical Interchange) format - secure medical data exchange with cryptographic features"
license = "MIT"
repository = "https://github.com/aurabx/jmix-rust"
homepage = "https://github.com/aurabx/jmix-rust"
keywords = ["jmix", "medical", "dicom", "encryption", "healthcare"]
categories = ["cryptography", "data-structures", "science"]
exclude = [
"samples/*",
".ai/*",
"warp.md"
]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0.16"
uuid = { version = "1.0", features = ["v4"] }
walkdir = "2.3"
chrono = { version = "0.4", features = ["serde"] }
sha2 = "0.10"
tempfile = "3.0"
dicom-object = "0.9"
dicom-dictionary-std = "0.9"
jsonschema = "0.33.0"
once_cell = "1.19"
base64 = "0.22"
x25519-dalek = { version = "2.0", features = ["serde"] }
ed25519-dalek = { version = "2.0", features = ["serde"] }
aes-gcm = "0.10"
hkdf = "0.12"
tar = "0.4"
getrandom = "0.2"
zeroize = { version = "1.7", features = ["zeroize_derive"] }
clap = { version = "4.5", features = ["derive"] }
zip = { version = "6", features = ["deflate"] }
[[bin]]
name = "jmix"
path = "src/bin/jmix.rs"