brainworm2024 commited on
Commit
a1ae90e
·
1 Parent(s): 4a90885

fix: correct Cargo.toml syntax (hex dependency on its own line)

Browse files
Files changed (1) hide show
  1. Cargo.toml +13 -14
Cargo.toml CHANGED
@@ -6,38 +6,37 @@ description = "Zero-trust medical AI triage gateway – AMD Hackathon 2026"
6
 
7
  [dependencies]
8
  tokio = { version = "1", features = ["full"] }
9
- axum = { version = "0.7", features = ["macros"] }
10
- tower = "0.4"
11
- tower-http = { version = "0.5", features = ["trace", "cors"] }
12
 
13
  serde = { version = "1.0", features = ["derive"] }
14
  serde_json = "1.0"
15
 
16
  tracing = "0.1"
17
- tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
18
  anyhow = "1.0"
19
 
20
- # Candle CPU only for now
21
  candle-core = "0.8"
22
  candle-nn = "0.8"
23
  candle-transformers = "0.8"
24
  hf-hub = "0.3"
25
 
26
- # PII Shield
27
-
28
  regex = "1"
29
 
30
- # Web3
31
- cid = "0.11" # re-exports multihash, we'll use that
32
- sha2 = "0.10" # manual hashing for CID
33
- alloy = { version = "0.7", features = ["full"] }
34
  alloy-provider = "0.7"
35
  alloy-signer-local = "0.7"
36
 
37
- # Environment
38
- dotenvy = "0.15"
39
 
40
  [profile.release]
41
  lto = true
42
  codegen-units = 1
43
- opt-level = 3hex = "0.4"
 
6
 
7
  [dependencies]
8
  tokio = { version = "1", features = ["full"] }
9
+ axum = { version = "0.8", features = ["macros", "tower-http"] }
10
+ tower-http = { version = "0.6", features = ["trace", "cors"] }
 
11
 
12
  serde = { version = "1.0", features = ["derive"] }
13
  serde_json = "1.0"
14
 
15
  tracing = "0.1"
16
+ tracing-subscriber = { version = "0.3", features = ["env-filter"] }
17
  anyhow = "1.0"
18
 
19
+ # Candle + ROCm
20
  candle-core = "0.8"
21
  candle-nn = "0.8"
22
  candle-transformers = "0.8"
23
  hf-hub = "0.3"
24
 
25
+ # PII Shield + regex
26
+ pii = "0.4"
27
  regex = "1"
28
 
29
+ # Web3 + proof
30
+ cid = "0.11"
31
+ multihash = "0.19"
32
+ alloy = { version = "0.7", features = ["full", "reqwest", "hyper"] }
33
  alloy-provider = "0.7"
34
  alloy-signer-local = "0.7"
35
 
36
+ # Proof hash
37
+ hex = "0.4"
38
 
39
  [profile.release]
40
  lto = true
41
  codegen-units = 1
42
+ opt-level = 3