X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=Cargo.toml;h=8add037f394bf8ef5d270e06b44d0fad8e2a8f11;hb=refs%2Fheads%2F2018-07-invalid-funding;hp=e8570e25f140f313bd2bbd37da5dd9f8489cf828;hpb=0707220ec7d1fad717f589e29bcecd817015e377;p=rust-lightning diff --git a/Cargo.toml b/Cargo.toml index e8570e25..8add037f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,12 +1,13 @@ [package] name = "lightning" -version = "0.0.3" +version = "0.0.4" authors = ["Matt Corallo"] license = "Apache-2.0" repository = "https://github.com/rust-bitcoin/rust-lightning/" description = """ -A Bitcoin Lightning implementation in Rust. -Still super-early code-dump quality and is missing large chunks. See README in git repo for suggested projects if you want to contribute. Don't have to bother telling you not to use this for anything serious, because you'd have to finish building it to even try. +A Bitcoin Lightning library in Rust. +Does most of the hard work, without implying a specific runtime, requiring clients implement basic network logic, chain interactions and disk storage. +Still missing tons of error-handling. See GitHub issues for suggested projects if you want to contribute. Don't have to bother telling you not to use this for anything serious, because you'd have to build a client around it to even try. """ build = "build.rs" @@ -22,8 +23,11 @@ rand = "0.4" secp256k1 = "0.9" [build-dependencies] -gcc = "0.3" +cc = "1.0" [dev-dependencies.bitcoin] version = "0.13" features = ["bitcoinconsensus"] + +[dev-dependencies] +hex = "0.3.2"