-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathCargo.toml
30 lines (27 loc) · 1.05 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
[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.7.1"
[dependencies]
bitcoin = { version = "0.32.2", default-features = false }
miniscript = { version = "12.2", default-features = false }
secp256k1-sys = "0.10.0"
secp256k1-zkp = "0.11.0"
serde = { version = "1.0", default-features = false, optional = true }
[features]
# for benchmarks
unstable = []
default = ["std"]
std = ["bitcoin/std", "miniscript/std", "secp256k1-zkp/rand-std"]
no-std = ["miniscript/no-std"]
use-serde = ["serde", "secp256k1-zkp/serde", "bitcoin/serde"]
[dev-dependencies]
bitcoin-test-utils = { path = "../bitcoin-test-utils" }
bitcoincore-rpc = { version = "0.19.0" }
bitcoincore-rpc-json = { version = "0.19.0" }
rayon = "1.5"
secp256k1-zkp = { version = "0.11.0", features = ["hashes", "rand","serde", "global-context"] }