-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
33 lines (27 loc) · 884 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
[package]
name = "tinyvanityeth"
version = "1.1.2"
description = "Tiny and fast command line tool to find vanity Ethereum addresses."
authors = ["Csongor Bokay <[email protected]>"]
license = "GPL-3.0-or-later"
keywords = ["blockchain", "ethereum", "ethereum-address", "vanity-address", "vanitygen"]
categories = ["command-line-utilities"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
getopts = "0.2"
num_cpus = "1"
regex = "1"
secp256k1 = { version = "0.28", features = ["std", "rand-std", "global-context"] }
tiny-keccak = { version = "2", features = ["keccak"] }
rust_decimal = { version = "1", features = ["maths"] }
[dev-dependencies]
criterion = "0.5"
[[bench]]
name = "checksum"
harness = false
[[bench]]
name = "hex"
harness = false
[profile.release]
lto = "fat"