Skip to content

Commit 770740d

Browse files
committed
Update deps, including significant dep reduction in rust-bitcoin!
1 parent ef86803 commit 770740d

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ Still super-early code-dump quality and is missing large chunks. See README in g
1414
non_bitcoin_chain_hash_routing = []
1515

1616
[dependencies]
17-
bitcoin = "0.10.7"
17+
bitcoin = "0.11"
1818
rust-crypto = "0.2"
19-
rand = "0.3"
20-
secp256k1 = "0.8.1"
21-
num = "0.1"
19+
rand = "0.4"
20+
secp256k1 = "0.8"

src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ extern crate bitcoin;
44
extern crate secp256k1;
55
extern crate rand;
66
extern crate crypto;
7-
extern crate num; //TODO: Convince andrew to not rely on this for fucking casting...
87

98
pub mod chain;
109
pub mod ln;

src/ln/channel.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ use bitcoin::util::hash::{Sha256dHash, Hash160};
77
use bitcoin::util::bip143;
88
use bitcoin::network::serialize::BitcoinHash;
99

10-
use num::FromPrimitive;
11-
1210
use secp256k1::key::{PublicKey,SecretKey};
1311
use secp256k1::{Secp256k1,Message,Signature};
1412
use secp256k1;

0 commit comments

Comments
 (0)