]> git.bitcoin.ninja Git - rust-lightning/commitdiff
Merge pull request #84 from savil/sort_outputs
authorMatt Corallo <649246+TheBlueMatt@users.noreply.github.com>
Thu, 26 Jul 2018 15:54:17 +0000 (11:54 -0400)
committerGitHub <noreply@github.com>
Thu, 26 Jul 2018 15:54:17 +0000 (11:54 -0400)
[RFC][Tx Sort] Implement sorting of inputs

1  2 
Cargo.toml

diff --combined Cargo.toml
index 2509901ad6803eaacb25e45bb8fde2319f3b327a,5842585acad2a9b7f54ae6073e8fa124e64c09d4..8add037f394bf8ef5d270e06b44d0fad8e2a8f11
@@@ -1,13 -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"
  
@@@ -23,8 -22,11 +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"