Merge pull request #537 from nuttycom/replace_bigint

Replace the deprecated `bigint` crate with `primitive-types`.
This commit is contained in:
ebfull 2022-04-14 08:37:20 -06:00 committed by GitHub
commit a138375f83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -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" }

View File

@ -1,5 +1,5 @@
use bigint::U256;
use byteorder::{LittleEndian, ReadBytesExt, WriteBytesExt};
use primitive_types::U256;
use crate::Version;