Compact Filters blockchain implementation

This commit is contained in:
Alekos Filini
2020-08-25 16:07:26 +02:00
parent c12aa3d327
commit 77c95b93ac
14 changed files with 2185 additions and 50 deletions

View File

@@ -14,13 +14,15 @@ serde_json = { version = "^1.0" }
rand = "^0.7"
# Optional dependencies
sled = { version = "0.31.0", optional = true }
sled = { version = "0.34", optional = true }
electrum-client = { version = "0.2.0-beta.1", optional = true }
reqwest = { version = "0.10", optional = true, features = ["json"] }
futures = { version = "0.3", optional = true }
clap = { version = "2.33", optional = true }
base64 = { version = "^0.11", optional = true }
async-trait = { version = "0.1", optional = true }
rocksdb = { version = "0.14", optional = true }
lazy_static = { version = "1.4", optional = true }
# Platform-specific dependencies
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
@@ -36,6 +38,7 @@ compiler = ["clap", "miniscript/compiler"]
default = ["key-value-db", "electrum"]
electrum = ["electrum-client"]
esplora = ["reqwest", "futures"]
compact_filters = ["rocksdb", "lazy_static"]
key-value-db = ["sled"]
cli-utils = ["clap", "base64"]
async-interface = ["async-trait"]