-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 1.07 KB
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 1.07 KB
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
31
32
[package]
name = "dash-spv-masternode-processor"
version = "0.5.1"
description = "Library for processing masternodes and quorums (SPV)"
edition = "2021"
publish = false
[features]
default = ["message_verification", "quorum_validation"]
generate-dashj-tests = []
message_verification = ["dashcore/message_verification"]
quorum_validation = ["dashcore/quorum_validation"]
test-helpers = []
use_serde = ["serde"]
std = ["dashcore/std"]
[dependencies]
bincode = "=2.0.0-rc.3"
dash-spv-crypto = { workspace = true }
dashcore = { git = "https://github.com/dashpay/rust-dashcore", features = ["std", "secp-recovery", "rand", "signer", "serde", "apple", "bincode", "ed25519-dalek"], default-features = false, branch = "feat/ferment" }
ferment-macro = { version = "0.2", package = "ferment-macro" }
serde = { version = "1.0.215", features = ["derive"], optional = true }
serde_json = "1.0.85"
[dev-dependencies]
base64 = "0.22.1"
serde = { version = "1.0.209", features = ["derive"] }
reqwest = { version = "0.12.9", features = ["blocking", "json"] }
[lib]
name = "dash_spv_masternode_processor"