-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (57 loc) · 1.44 KB
/
Copy pathCargo.toml
File metadata and controls
67 lines (57 loc) · 1.44 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "ryzan"
version = "1.3.0"
edition = "2021"
description = "Secure Solana wallet with 2FA protection"
license = "MIT"
authors = ["Sabir Khan <simplysabir@gmail.com>"]
repository = "https://github.com/simplysabir/ryzan"
homepage = "https://github.com/simplysabir/ryzan"
documentation = "https://github.com/simplysabir/ryzan#readme"
keywords = ["solana", "wallet", "cli"]
categories = ["command-line-utilities"]
readme = "README.md"
[[bin]]
name = "ryzan"
path = "src/main.rs"
[dependencies]
# Core security
chacha20poly1305 = "0.9"
argon2 = "0.4"
zeroize = "1.0"
getrandom = "0.2"
# TOTP and crypto utilities
totp-lite = "2.0"
bip39 = "2.0"
base64 = "0.21"
qrcode = "0.14"
# Solana
solana-sdk = "1.16"
solana-client = "1.16"
spl-token = "4.0"
spl-associated-token-account = "2.0"
# CLI and serialization
clap = { version = "4.0", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_with = "3.0"
serde_json = "1.0"
tokio = { version = "1.0", features = ["full"] }
# HTTP client for updates
reqwest = { version = "0.11", features = ["json"] }
# Terminal UI (matching the design reference)
crossterm = "0.27"
ratatui = "0.24"
# Utilities
anyhow = "1.0"
dirs = "5.0"
uuid = { version = "1.0", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
# Security utilities
libc = "0.2" # For mlock
rand = "0.8"
base32 = "0.4"
urlencoding = "2.1"
rpassword = "7.3"
bs58 = "0.5"
[dev-dependencies]
tempfile = "3.8"