From: Matt Corallo Date: Fri, 20 Jul 2018 02:45:34 +0000 (-0400) Subject: Bump version for API overhauls, update deps and docs X-Git-Tag: v0.0.12~384^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=rust-lightning;a=commitdiff_plain;h=84cb40f859fba8d8f2c8e6562f310f4b832a05b0 Bump version for API overhauls, update deps and docs --- diff --git a/Cargo.toml b/Cargo.toml index e8570e25..2509901a 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,7 +23,7 @@ rand = "0.4" secp256k1 = "0.9" [build-dependencies] -gcc = "0.3" +cc = "1.0" [dev-dependencies.bitcoin] version = "0.13" diff --git a/build.rs b/build.rs index 7dd34039..963075e9 100644 --- a/build.rs +++ b/build.rs @@ -1,9 +1,9 @@ -extern crate gcc; +extern crate cc; fn main() { #[cfg(not(any(target_arch = "x86", target_arch = "x86_64", target_arch = "arm")))] { - let mut cfg = gcc::Build::new(); + let mut cfg = cc::Build::new(); cfg.file("src/util/rust_crypto_nonstd_arch.c"); cfg.compile("lib_rust_crypto_nonstd_arch.a"); } diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index ac5373b7..077aacfa 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -24,7 +24,7 @@ honggfuzz = { version = "0.5", optional = true } afl = { version = "0.3", optional = true } [build-dependencies] -gcc = "0.3" +cc = "1.0" # Prevent this from interfering with workspaces [workspace]