forked from p2pderivatives/rust-dlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 1.01 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
[package]
authors = ["Crypto Garage"]
description = "Creation, signing and verification of Discreet Log Contracts (DLC) transactions."
homepage = "https://github.com/p2pderivatives/rust-dlc"
license-file = "../LICENSE"
name = "dlc"
repository = "https://github.com/p2pderivatives/rust-dlc/tree/master/dlc"
version = "0.4.0"
[dependencies]
bitcoin = {version = "0.29.2"}
miniscript = "8.0.0"
secp256k1-sys = {version = "0.6.1" }
secp256k1-zkp = {version = "0.7.0", features = ["bitcoin_hashes", "rand-std"]}
serde = {version = "1.0", default-features = false, optional = true}
[features]
# for benchmarks
unstable = []
use-serde = ["serde", "secp256k1-zkp/use-serde", "bitcoin/serde"]
[dev-dependencies]
bitcoin = {version = "0.29.2"}
bitcoin-test-utils = {path = "../bitcoin-test-utils"}
bitcoincore-rpc = {version = "0.16.0" }
bitcoincore-rpc-json = {version = "0.16.0" }
dlc-trie = {path = "../dlc-trie"}
rayon = "1.5"
secp256k1-zkp = {version = "0.7.0", features = ["bitcoin_hashes", "rand", "rand-std", "serde", "global-context"]}