File size: 837 Bytes
99f62cc 87840bf 99f62cc 87840bf 99f62cc a1ae90e eff14fc 87840bf eff14fc | 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 | [package]
name = "rustvital-amd"
version = "0.1.0"
edition = "2021"
description = "Zero-trust medical AI triage gateway – AMD Hackathon 2026"
[dependencies]
tokio = { version = "1", features = ["full"] }
axum = { version = "0.7", features = ["macros"] }
tower = "0.4"
tower-http = { version = "0.5", features = ["trace", "cors"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
anyhow = "1.0"
hex = "0.4"
sha2 = "0.10"
regex = "1"
cid = "0.11"
alloy = { version = "0.7", features = ["full"] }
alloy-provider = "0.7"
alloy-signer-local = "0.7"
dotenvy = "0.15"
reqwest = { version = "0.12", features = ["json", "stream"] }
tokio-stream = "0.1"
futures = "0.3"
k256 = { version = "0.13", features = ["ecdsa", "sha256"] }
|