Add automatically generated C/C++ wrapper bindings
[rust-lightning] / lightning-c-bindings / src / lib.rs
diff --git a/lightning-c-bindings/src/lib.rs b/lightning-c-bindings/src/lib.rs
new file mode 100644 (file)
index 0000000..89dfc09
--- /dev/null
@@ -0,0 +1,24 @@
+//!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.
+#![allow(unknown_lints)]
+#![allow(non_camel_case_types)]
+#![allow(non_snake_case)]
+#![allow(unused_imports)]
+#![allow(unused_variables)]
+#![allow(unused_mut)]
+#![allow(unused_parens)]
+#![allow(unused_unsafe)]
+#![allow(unused_braces)]
+mod c_types;
+mod bitcoin;
+pub mod util;
+pub mod chain;
+pub mod ln;
+pub mod routing;