-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
59 lines (50 loc) · 1.81 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
54
55
56
57
58
59
[package]
name = "btc-vanity"
version = "2.1.0"
authors = ["Emirhan TALA <[email protected]>"]
description = "A blazingly fast Bitcoin, Ethereum, and Solana 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", "solana", "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-traits = "0.2.19"
regex = "1.11.1"
memx = "0.1.32"
# Dependencies for Ethereum support
hex = { version = "0.4.3", optional = true } # Make it optional
secp256k1 = { version = "0.30.0", features = ["rand"], optional = true } # Make it optional
sha3 = { version = "0.11.0-pre.4", optional = true } # Make it optional
# Dependencies for Solana support
solana-sdk = { version = "2.1.10", default-features = false, features = ["full"], optional = true }
openssl = { version = "0.10", features = ["vendored"], optional = true }
[features]
default = []
ethereum = ["hex", "secp256k1", "sha3"]
solana = ["solana-sdk", "openssl"]
all = ["solana", "ethereum"]
[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"]
features = ["ethereum"]