forked from p2pderivatives/rust-dlc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
27 lines (24 loc) · 994 Bytes
/
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
[package]
authors = ["Crypto Garage"]
description = "Structs and serialization for the Discreet Log Contract (DLC) protocol."
homepage = "https://github.com/p2pderivatives/rust-dlc"
license-file = "../LICENSE"
name = "dlc-messages"
repository = "https://github.com/p2pderivatives/rust-dlc/tree/master/dlc-messages"
version = "0.4.0"
[features]
use-serde = ["serde", "secp256k1-zkp/use-serde"]
[dependencies]
bitcoin = {version = "0.29.2"}
dlc = {version = "0.4.0", path = "../dlc"}
lightning = {version = "0.0.117"}
secp256k1-zkp = {version = "0.7.0", features = ["bitcoin_hashes", "rand", "rand-std"]}
serde = {version = "1.0", features = ["derive"], optional = true}
log = "0.4.14"
[dev-dependencies]
bitcoin = {version = "0.29.2"}
bitcoin-test-utils = {path = "../bitcoin-test-utils"}
dlc-messages = {path = "./", features = ["use-serde"]}
secp256k1-zkp = {version = "0.7.0", features = ["use-serde", "global-context"]}
serde = {version = "1.0", features = ["derive"]}
serde_json = "1.0"