-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
60 lines (49 loc) · 1.7 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
60
[package]
name = "hal"
version = "0.9.5"
authors = ["Steven Roose <[email protected]>"]
license = "CC0-1.0"
homepage = "https://github.com/stevenroose/hal/"
repository = "https://github.com/stevenroose/hal/"
description = "hal - the Bitcoin companion"
keywords = [ "crypto", "bitcoin" ]
readme = "README.md"
edition = "2018"
[lib]
name = "hal"
path = "src/lib.rs"
[[bin]]
name = "hal"
path = "src/bin/hal/main.rs"
required-features = ["cli"]
[features]
default = ["cli"]
cli = ["base64-compat", "clap", "fern", "log", "jobserver", "shell-escape"]
[dependencies]
bitcoin = { version = "0.29.2", features = [ "serde", "rand" ] }
secp256k1 = { version = "0.24.3", features = [ "recovery" ] }
secp256k1_zkp_musig = { package = "secp256k1-zkp", git = "https://github.com/sanket1729/rust-secp256k1-zkp.git", rev = "60e631c24588a0c9e271badd61959294848c665d" }
bip39 = { version = "2.1.0", features = [ "all-languages" ] }
lightning-invoice = "0.4.0"
miniscript = { version = "9.2.0", features = ["compiler"] }
byteorder = "1.3.1"
chrono = { version = "0.4.6", features = ["serde"] }
lazy_static = "1.4"
hex = "0.3.2"
serde = { version = "1.0.84", features = [ "derive" ] }
serde_json = "1.0.34"
serde_yaml = "0.8.8"
# for the CLI
base64-compat = { version = "1.0.0", optional = true }
clap = { version = "=2.33.3", optional = true }
fern = { version = "0.5.6", optional = true }
log = { version = "0.4.5", optional = true }
# For external commands
jobserver = { version = "0.1.11", optional = true }
shell-escape = { version = "0.1.4", optional = true }
[package.metadata.rpm]
package = "hal-bitcoin"
[package.metadata.rpm.cargo]
buildflags = ["--release", "--frozen"]
[package.metadata.rpm.targets]
hal = { path = "/usr/bin/hal" }