forked from p2pderivatives/rust-dlc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
22 lines (20 loc) · 801 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
[package]
authors = ["Crypto Garage"]
description = "Data structures for storage and retrival of numerical Discreet Log Contracts (DLC)."
homepage = "https://github.com/p2pderivatives/rust-dlc"
license-file = "../LICENSE"
name = "dlc-trie"
repository = "https://github.com/p2pderivatives/rust-dlc/tree/master/dlc-trie"
version = "0.7.1"
[features]
default = ["std"]
std = ["dlc/std", "bitcoin/std"]
no-std = ["dlc/no-std"]
parallel = ["rayon"]
use-serde = ["serde", "dlc/use-serde"]
[dependencies]
bitcoin = { version = "0.32.2", default-features = false }
dlc = {version = "0.7.1", default-features = false, path = "../dlc"}
rayon = {version = "1.5", optional = true}
secp256k1-zkp = {version = "0.11.0" }
serde = {version = "1.0", optional = true, default-features = false, features = ["derive"]}