-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 706 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (22 loc) · 706 Bytes
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
[package]
name = "svmai"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rayon = "1.10.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
solana-sdk = "2.0.1"
keyring = "3.0.2"
walkdir = "2.5.0"
dirs = "5.0.1" # For finding home directory
aes-gcm = "0.10.3" # For AES-GCM encryption
rand = "0.8.5" # For generating nonces/IVs
hex = "0.4.3" # For encoding/decoding master key if needed for storage/debug
# TUI Libraries
ratatui = { version = "0.27.0", features = ["all-widgets", "crossterm"] }
crossterm = "0.27.0"
num_cpus = "1.16.0"
[dev-dependencies]
tempfile = "3.10.1"