X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-c-bindings;a=blobdiff_plain;f=lightning-c-bindings%2Fsrc%2Flib.rs;h=a0beebd06997321139a7be45e539ac11243bec5c;hp=9fffc70a0031e8b27f54a44c1cfdd88e03add2c2;hb=1eaf50a3d9f777b462ff1817678473567a00eb75;hpb=143087ac211ffc225d993cec7033422c42d7f4d3 diff --git a/lightning-c-bindings/src/lib.rs b/lightning-c-bindings/src/lib.rs index 9fffc70..a0beebd 100644 --- a/lightning-c-bindings/src/lib.rs +++ b/lightning-c-bindings/src/lib.rs @@ -6,15 +6,7 @@ // license as that which applies to the original source files from which this // source was automatically generated. -//!lightning -//! Rust-Lightning, not Rusty's Lightning! -//! -//! A full-featured but also flexible lightning implementation, in library form. This allows the -//! user (you) to decide how they wish to use it instead of being a fully self-contained daemon. -//! This means there is no built-in threading/execution environment and it's up to the user to -//! figure out how best to make networking happen/timers fire/things get written to disk/keys get -//! generated/etc. This makes it a good candidate for tight integration into an existing wallet -//! instead of having a rather-separate lightning appendage to a wallet. +//! C Bindings #![allow(unknown_lints)] #![allow(non_camel_case_types)] #![allow(non_snake_case)] @@ -24,10 +16,14 @@ #![allow(unused_parens)] #![allow(unused_unsafe)] #![allow(unused_braces)] -#![deny(missing_docs)] +#![cfg_attr(not(feature = "std"), no_std)] +#[cfg(not(any(feature = "std", feature = "no-std")))] +compile_error!("at least one of the `std` or `no-std` features must be enabled"); +extern crate alloc; +pub mod version; pub mod c_types; pub mod bitcoin; -pub mod util; -pub mod chain; -pub mod ln; -pub mod routing; +pub mod lightning; +pub mod lightning_persister; +pub mod lightning_background_processor; +pub mod lightning_invoice;