mirror of
https://github.com/lightningdevkit/rust-lightning.git
synced 2025-02-25 15:20:24 +01:00
Including: * A script to automatically generate all the rest, * Cargo.toml and cbindgen.toml, * manually-written wrapper types for a few types
19 lines
495 B
TOML
19 lines
495 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 = "lightning"
|
|
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.11", path = "../lightning" }
|