-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
53 lines (48 loc) · 1.56 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
[package]
name = "btc-vanity"
version = "2.0.1"
authors = ["Emirhan TALA <tala.emirhan@gmail.com>"]
description = "A blazingly fast Bitcoin and Ethereum vanity address generator."
edition = "2021"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/Emivvvvv/btc-vanity"
documentation = "https://docs.rs/btc-vanity/latest/btc_vanity/index.html"
keywords = ["bitcoin", "ethereum", "btc", "vanity", "address"]
[dependencies]
rand = "0.9.0-beta.3"
bitcoin = { version = "0.32.5", features = ["rand-std"] }
thiserror = "2.0.11"
clap = "4.5.26"
num-bigint = { version = "0.4.6", features = ["rand"] }
num-traits = "0.2.19"
regex = "1.11.1"
hex = "0.4.3"
libsecp256k1 = "0.7.1"
secp256k1 = { version = "0.30.0", features = ["rand"] }
sha3 = "0.11.0-pre.4"
log = "0.4.25"
memx = "0.1.32"
openssl = { version = "0.10", features = ["vendored"] }
[dev-dependencies]
tempfile = "3.6"
[profile.test]
opt-level = 3
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.22.1"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = []
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = true