-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 654 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 654 Bytes
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
[package]
name = "musign-cli"
version = "0.1.0"
authors = ["gorazdko <gorazdko@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "musign"
path="src/main.rs"
[dependencies]
clap = "3.0.0-beta.2"
secp256k1 = {version = "0.20.1", features = ["bitcoin_hashes", "rand-std" ]}
hex = "0.4.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = {version="1.0", features = ["preserve_order"]}
serde_cbor = "0.11.1"
bitcoin = {version="0.26.0", features = ["secp-recovery", "base64"]}
[dev-dependencies]
assert_cmd = "0.10"
predicates = "1"
tempfile = "3"