-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (49 loc) · 1.22 KB
/
Cargo.toml
File metadata and controls
60 lines (49 loc) · 1.22 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
[package]
name = "rust-uhi"
version = "0.1.0"
edition = "2021"
authors = ["Airesh Bhat (nelliairesh@gmail.com)"]
description = "Unifiecd Health Interface (UHI) Protocol Implementation"
readme = "README.md"
license = "MIT"
[dependencies]
# Web framework
actix-web = "4.4"
actix-rt = "2.9"
# Database
sqlx = { version = "0.7", features = ["runtime-tokio-rustls", "postgres", "uuid", "time", "json", "chrono"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
tracing-actix-web = "0.7"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Utilities
uuid = { version = "1.6", features = ["serde", "v4"] }
chrono = { version = "0.4", features = ["serde"] }
dotenv = "0.15"
config = "0.13"
async-trait = "0.1"
# Metrics
prometheus-client = "0.22"
# Authentication
jsonwebtoken = "9.2"
hmac = "0.12"
sha2 = "0.10"
base64 = "0.21"
# Network registry
ring = "0.17"
reqwest = { version = "0.11", features = ["json"] }
url = "2.4"
[dev-dependencies]
mockall = "0.12"
test-case = "3.3"
pretty_assertions = "1.4"
actix-rt = "2.9"
tokio-test = "0.4"