forked from rust-bitcoin/rust-miniscript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
62 lines (50 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
62 lines (50 loc) · 1.51 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[package]
name = "miniscript"
version = "8.0.0"
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>, Sanket Kanjalkar <sanket1729@gmail.com>"]
license = "CC0-1.0"
homepage = "https://github.com/rust-bitcoin/rust-miniscript/"
repository = "https://github.com/rust-bitcoin/rust-miniscript/"
description = "Miniscript: a subset of Bitcoin Script designed for analysis"
keywords = [ "crypto", "bitcoin"]
readme = "README.md"
edition = "2018"
[features]
default = ["std"]
std = ["bitcoin/std", "bitcoin/secp-recovery"]
no-std = ["hashbrown", "bitcoin/no-std"]
compiler = []
trace = []
unstable = []
serde = ["actual-serde", "bitcoin/serde"]
rand = ["bitcoin/rand"]
[dependencies]
bitcoin = { version = "0.29.1", default-features = false }
hashbrown = { version = "0.11", optional = true }
# Do NOT use this as a feature! Use the `serde` feature instead.
actual-serde = { package = "serde", version = "1.0", optional = true }
[dev-dependencies]
bitcoind = { version = "0.27.0", features=["23_0"] }
actual-rand = { package = "rand", version = "0.8.4"}
secp256k1 = {version = "0.24.0", features = ["rand-std"]}
[[example]]
name = "htlc"
required-features = ["std", "compiler"]
[[example]]
name = "parse"
required-features = ["std"]
[[example]]
name = "sign_multisig"
required-features = ["std"]
[[example]]
name = "verify_tx"
required-features = ["std"]
[[example]]
name = "psbt"
required-features = ["std"]
[[example]]
name = "xpub_descriptors"
required-features = ["std"]
[[example]]
name = "taproot"
required-features = ["compiler","std"]