Merge pull request #537 from nuttycom/replace_bigint
Replace the deprecated `bigint` crate with `primitive-types`.
This commit is contained in:
commit
a138375f83
|
@ -12,7 +12,7 @@ assert_matches = "1.3.0"
|
|||
quickcheck = "0.9"
|
||||
|
||||
[dependencies]
|
||||
bigint = "4"
|
||||
primitive-types = "0.11"
|
||||
byteorder = "1"
|
||||
blake2 = { package = "blake2b_simd", version = "1" }
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use bigint::U256;
|
||||
use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt};
|
||||
use primitive_types::U256;
|
||||
|
||||
use crate::Version;
|
||||
|
||||
|
|
Loading…
Reference in New Issue