-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
37 lines (35 loc) · 985 Bytes
/
Cargo.toml
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
[package]
name = "crypto-wallet"
version = "0.1.0"
edition = "2021"
authors = ["Lussi Petelius <[email protected]>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes = "0.8.4"
anyhow = "1.0.81"
base64 = "0.22.0"
ctr = "0.9.2"
digest = "0.10.7"
elliptic-curve = "0.13.8"
ethaddr = { version = "0.2", features = ["serde"] }
ethereum-types = "0.14.1"
ethnum = { version = "1.5.0", features = ["serde"] }
hex = "0.4.3"
hex-literal = "0.4.1"
hmac = "0.12.1"
k256 = "0.13.3"
pbkdf2 = "0.12.2"
rand = "0.8.5"
scrypt = { version = "0.11.0" }
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
sha2 = "0.10.8"
sha3 = "0.10.8"
tempfile = "3.10.1"
unicode-normalization = "0.1.23"
uuid = { version = "1.8.0", features = ["serde", "v4"] }
alloy = { git = "https://github.com/alloy-rs/alloy", features = [
"providers",
"node-bindings",
] }
tokio = { version = "1", features = ["full"] }