Bump versions to 0.0.10
[rust-lightning] / README.md
1 [![Safety Dance](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance/)
2
3 Rust-Lightning, not Rusty's Lightning!
4 =====
5
6 Documentation can be found at [docs.rs](https://docs.rs/lightning/)
7
8 Currently somewhere near 50% towards usable, published to see if there is any
9 real interest from folks in using a lightning rust library.
10
11 The goal is to provide a full-featured but also incredibly flexible lightning
12 implementation, allowing the user to decide how they wish to use it. With that
13 in mind, everything should be exposed via simple, composable APIs. The user
14 should be able to decide whether they wish to use their own threading/execution
15 models, allowing usage inside of existing library architectures, or allow us to
16 handle that for them. Same goes with network connections - if the user wishes
17 to use their own networking stack, they should be able to do so! This all means
18 that we should provide simple external interfaces which allow the user to drive
19 all execution, while implementing sample execution drivers that create a
20 full-featured lightning daemon by default.
21
22 For security reasons, do not add new dependencies. Really do not add new
23 non-optional/non-test/non-library dependencies. Really really do not add
24 dependencies with dependencies. Do convince Andrew to cut down dependency usage
25 in rust-bitcoin.
26
27 Notes on coding style:
28  * Use tabs. If you want to align lines, use spaces. Any desired alignment
29    should display fine at any tab-length display setting.
30
31 License is Apache-2.0.