Skip to content
This repository has been archived by the owner on Nov 6, 2020. It is now read-only.

updated bigint with optimized mul and from_big_indian #6323

Merged
merged 1 commit into from
Aug 17, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion rpc_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version = "1.4.0"
[dependencies]
futures = "0.1"
rpassword = "0.3.0"
bigint = "3.0"
bigint = "4.0"
parity-rpc = { path = "../rpc" }
parity-rpc-client = { path = "../rpc_client" }
ethcore-util = { path = "../util" }
2 changes: 1 addition & 1 deletion util/bigint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version = "0.1.3"
authors = ["Parity Technologies <admin@parity.io>"]

[dependencies]
bigint = "3.0"
bigint = "4.0"
rustc-hex = "1.0"
rand = "0.3.12"
libc = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion util/rlp/benches/rlp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
#![feature(test)]

extern crate test;
extern crate bigint;
extern crate ethcore_bigint as bigint;
extern crate rlp;

use test::Bencher;
Expand Down