/ sovereign-wallet / Cargo.toml
Cargo.toml
 1  [package]
 2  name = "sovereign-wallet"
 3  version = "0.1.0"
 4  edition = "2021"
 5  authors = ["Antigravity Studio"]
 6  license = "AGPL-3.0"
 7  description = "Responsible financial layer for sovereign AI agents"
 8  repository = "https://github.com/adriancmurray/sovereign-wallet"
 9  keywords = ["ai", "agent", "crypto", "wallet", "sovereign"]
10  
11  [dependencies]
12  # Ethereum primitives
13  alloy-primitives = "0.8"
14  alloy-signer = "0.8"
15  alloy-signer-local = "0.8"
16  
17  # Cryptography
18  k256 = { version = "0.13", features = ["ecdsa"] }
19  sha3 = "0.10"
20  rand = "0.8"
21  hex = "0.4"
22  
23  # Serialization
24  serde = { version = "1.0", features = ["derive"] }
25  serde_json = "1.0"
26  base64 = "0.22"
27  
28  # Async runtime
29  tokio = { version = "1.0", features = ["full"] }
30  
31  # Error handling
32  thiserror = "1.0"
33  
34  # UUID for audit entries
35  uuid = { version = "1.0", features = ["v4"] }
36  
37  [dev-dependencies]
38  tokio-test = "0.4"