mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 15:20:24 +01:00
24 lines
712 B
TOML
24 lines
712 B
TOML
[package]
|
|
name = "lightning-c-bindings"
|
|
version = "0.0.1"
|
|
authors = ["Matt Corallo"]
|
|
license = "Apache-2.0"
|
|
edition = "2018"
|
|
description = """
|
|
Utilities to fetch the chain from Bitcoin Core REST/RPC Interfaces and feed them into Rust Lightning.
|
|
"""
|
|
|
|
[lib]
|
|
name = "ldk"
|
|
crate-type = ["staticlib"
|
|
# Note that the following line is matched exactly by genbindings to turn off dylib creation
|
|
,"cdylib"]
|
|
|
|
[dependencies]
|
|
bitcoin = "0.24"
|
|
lightning = { version = "0.0.12", path = "../lightning" }
|
|
|
|
# We eventually want to join the root workspace, but for now, the bindings generation is
|
|
# a bit brittle and we don't want to hold up other developers from making changes just
|
|
# because they break the bindings
|
|
[workspace]
|