-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (37 loc) · 841 Bytes
/
Cargo.toml
File metadata and controls
45 lines (37 loc) · 841 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "proj"
version = "0.1.0"
edition = "2021"
rust-version = "1.81.0"
[features]
balance = []
spend = []
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# Util
getrandom = "0.2"
hex = "0.4"
thiserror = "2.0.6"
log = "0.4"
env_logger = "0.11.5"
# Criptografia
sha2 = "0.10"
k256 = { version = "0.13", features = ["ecdsa"] }
ripemd = "0.1.3"
hmac = "0.12"
secp256k1 = "0.30"
pbkdf2 = "0.12"
bech32 = "0.9"
# Para trabalhar com números grandes
num-bigint = "0.4"
num-traits = "0.2"
# request
reqwest = { version = "0.11", features = ["blocking", "json"] }
# conversion
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
# Performance
rayon = "1.5"
tokio = { version = "1.42.0", features = ["full"] }
async-trait = "0.1"