forked from RCasatta/electrum2descriptors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (33 loc) · 1.04 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
[package]
name = "electrum2descriptors"
version = "0.4.4"
authors = ["Riccardo Casatta <riccardo@casatta.it>"]
edition = "2018"
description = "Converts electrum xpubs (like vpub, ypub...) into output descriptors"
license = "MIT"
homepage = "https://github.com/RCasatta/electrum2descriptors"
documentation = "https://docs.rs/electrum2descriptors/"
repository = "https://github.com/RCasatta/electrum2descriptors"
keywords = ["bitcoin", "electrum", "descriptors"]
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "libelectrum2descriptors"
path = "src/lib.rs"
[[bin]]
name = "electrum2descriptors"
path = "src/bin.rs"
[dependencies]
bitcoin = "0.30"
# Optional dependencies
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
regex = { version = "1", optional = true }
[dev-dependencies]
miniscript = "9"
bdk = "0.28"
rstest = "0.17"
tempfile = "3.5"
[features]
default = [ "wallet_file" ]
wallet_file = [ "serde", "serde_json", "regex"]