/ abzu-router / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "abzu-router"
 3  version = "0.1.0"
 4  edition = "2024"
 5  publish = false
 6  
 7  [dependencies]
 8  # Pure logic - no IO, no networking
 9  
10  # Crypto for address derivation
11  ed25519-dalek = { version = "2.0", features = ["rand_core"] }
12  
13  # Hashing
14  blake3 = "1.0"
15  
16  # Serialization (for Peer structures)
17  serde = { version = "1.0", features = ["derive"] }
18  
19  # Error handling  
20  thiserror = "1.0"
21  
22  [dev-dependencies]
23  rand = "0.8"