Rust c-lightning client

Status

This crate provides an interface from rust to the c-lightning daemon through RPC.

```rust extern crate clightningrpc;

use clightningrpc::LightningRPC;

fn main() { let mut client = LightningRPC::new("/home/user/.lightning/lightning-rpc".to_string());

println!("getinfo result: {:?}", client.getinfo().unwrap());

} ```

See examples directory for more usage examples.

Currently implemented (this covers all non-dev commands as of c-lightning v0.6.1rc1):

Be aware that the API (of rust-clighting-rpc, but also that of c-lightning itself) is not finalized. This means that it may change from version to version and break your compile, sorry!

To do

"code" : 205, "message" : "Could not find a route", "data" : ...

data could be parsed into a structure, but this depends on the kind of error

Style guidelines

Credits

This library is based on Andrew Poelstra's rust-jsonrpc.