-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (59 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
75 lines (59 loc) · 1.46 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
68
69
70
71
72
73
74
75
[package]
name = "locksign"
version = "0.1.0"
edition = "2024"
description = "Secure, in-memory blockchain signing service for Ethereum & Solana"
license = "MIT"
repository = "https://github.com/yourorg/locksign"
keywords = ["blockchain", "ethereum", "solana", "signing", "security"]
categories = ["cryptography", "web-programming"]
[dependencies]
# Async runtime
tokio = { version = "1.37", features = ["macros", "rt-multi-thread", "signal", "fs"] }
# gRPC
tonic = "0.11"
prost = "0.12"
# Ethereum
ethers-core = "2.0"
k256 = { version = "0.13", features = ["ecdsa"] }
# Solana
solana-sdk = "2.3.1"
ed25519-dalek = { version = "2.1", features = ["rand_core"] }
# Security
secrecy = { version = "0.8", features = ["serde"] }
zeroize = { version = "1.3", features = ["derive"] }
nix = { version = "0.26", features = ["mman"] }
# Encryption
aes-gcm = "0.10"
argon2 = "0.5"
rand = "0.8"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Config
config = "0.14"
# Hex encoding
hex = "0.4"
# SHA3 for Ethereum
sha3 = "0.10"
base64 = "0.21"
chrono = { version = "0.4", features = ["serde"] }
bs58 = "0.4"
tempfile = "3.24.0"
rlp = "0.6.1"
[build-dependencies]
tonic-build = "0.11"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
[[bin]]
name = "locksign"
path = "src/main.rs"