mirror of
https://github.com/LORDBABUINO/stealth.git
synced 2026-06-10 06:13:31 -07:00
22 lines
582 B
TOML
22 lines
582 B
TOML
[package]
|
|
name = "stealth-cli"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description = "Detects UTXO privacy vulnerabilities in wallets"
|
|
categories = ["cryptography::cryptocurrencies"]
|
|
keywords = ["bitcoin", "privacy", "cli"]
|
|
exclude = ["tests"]
|
|
|
|
[dependencies]
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
stealth-bitcoincore = { path = "../bitcoincore" }
|
|
stealth-engine = { workspace = true }
|
|
|
|
[lints.rust]
|
|
missing_debug_implementations = "deny"
|