-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 1.04 KB
/
Copy pathCargo.toml
File metadata and controls
35 lines (32 loc) · 1.04 KB
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
[package]
name = "btc-risk-lab"
version = "0.5.0"
edition = "2021"
authors = ["Jose Robles"]
description = "A Rust CLI for explainable Bitcoin transaction, PSBT, and script risk reports."
license = "MIT"
repository = "https://github.com/josediegorobles/btc-risk-lab"
readme = "README.md"
keywords = ["bitcoin", "rust", "psbt", "risk", "analysis"]
categories = ["command-line-utilities", "cryptography::cryptocurrencies"]
[features]
default = []
ai = ["dep:reqwest", "dep:tokio"]
fetch = ["dep:reqwest", "dep:tokio"]
[dependencies]
anyhow = "1"
base64 = "0.22"
bitcoin = { version = "0.32", features = ["serde"] }
clap = { version = "4", features = ["derive"] }
hex = "0.4"
miniscript = "12"
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"], optional = true }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
thiserror = "2"
tokio = { version = "1", default-features = false, features = ["rt-multi-thread"], optional = true }
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
proptest = "1"
tempfile = "3"