rust-lightning/lightning-block-sync/Cargo.toml
Jeffrey Czyz 9860646e73
Add lightning-block-sync package and library
Defines an interface and related types for fetching block headers and
data from a block source (e.g., Bitcoin Core). Used to keep lightning in
sync with chain activity.
2021-02-03 17:45:54 -08:00

13 lines
343 B
TOML

[package]
name = "lightning-block-sync"
version = "0.0.1"
authors = ["Jeffrey Czyz", "Matt Corallo"]
license = "Apache-2.0"
edition = "2018"
description = """
Utilities to fetch the chain data from a block source and feed them into Rust Lightning.
"""
[dependencies]
bitcoin = "0.24"
lightning = { version = "0.0.12", path = "../lightning" }