-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (39 loc) · 967 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
38
39
40
41
42
[package]
name = "superluminal-vanity"
version = "0.1.0"
edition = "2021"
[[bench]]
name = "benches"
path = "src/benches/mod.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ethers = "2.0.7"
fancy-regex = "0.11.0"
hex = "0.4.3"
lazy_static = "1.4.0"
libsecp256k1 = "0.7.1"
rand = "0.8.5"
regex = "1.8.3"
sha3 = "0.10.8"
tiny-bip39 = "1.0.0"
tiny-hderive = "0.3.0"
tiny-keccak = { version = "1.4" }
#tiny-secp256k1 = "0.1.1"
secp256k1 = { version = "0.27.0", features = ["rand"] }
web3 = "0.19.0"
num-bigint = { version = "0.4.3", features = ["rand"] }
num-traits = "0.2.15"
once_cell = "1.18.0"
postgres = "0.19.5"
dotenv = "0.15.0"
rayon = "1.7.0"
ethaddr = "0.1.2"
eth_checksum = "0.1.2"
ordered-float = { version = "3.9.1", default-features = false }
substrate-subxt = "0.16.0"
sp-core = "24.0.0"
bs58 = "0.5.0"
bip39 = "2.0.0"
bitcoin_hashes = "0.13.0"
[dev-dependencies]
criterion = "0.5.1"