Update rust-bitcoin
[rust-lightning] / lightning / src / lib.rs
1 // This file is Copyright its original authors, visible in version control
2 // history.
3 //
4 // This file is licensed under the Apache License, Version 2.0 <LICENSE-APACHE
5 // or http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your option.
7 // You may not use this file except in accordance with one or both of these
8 // licenses.
9
10 #![crate_name = "lightning"]
11
12 //! Rust-Lightning, not Rusty's Lightning!
13 //!
14 //! A full-featured but also flexible lightning implementation, in library form. This allows the
15 //! user (you) to decide how they wish to use it instead of being a fully self-contained daemon.
16 //! This means there is no built-in threading/execution environment and it's up to the user to
17 //! figure out how best to make networking happen/timers fire/things get written to disk/keys get
18 //! generated/etc. This makes it a good candidate for tight integration into an existing wallet
19 //! instead of having a rather-separate lightning appendage to a wallet.
20
21 #![cfg_attr(not(any(feature = "fuzztarget", feature = "_test_utils")), deny(missing_docs))]
22 #![cfg_attr(not(any(test, feature = "fuzztarget", feature = "_test_utils")), forbid(unsafe_code))]
23
24 // In general, rust is absolutely horrid at supporting users doing things like,
25 // for example, compiling Rust code for real environments. Disable useless lints
26 // that don't do anything but annoy us and cant actually ever be resolved.
27 #![allow(bare_trait_objects)]
28 #![allow(ellipsis_inclusive_range_patterns)]
29
30 #![cfg_attr(all(test, feature = "unstable"), feature(test))]
31 #[cfg(all(test, feature = "unstable"))] extern crate test;
32
33 extern crate bitcoin;
34 #[cfg(any(test, feature = "_test_utils"))] extern crate hex;
35 #[cfg(any(test, feature = "fuzztarget", feature = "_test_utils"))] extern crate regex;
36
37 #[macro_use]
38 pub mod util;
39 pub mod chain;
40 pub mod ln;
41 pub mod routing;