diff options
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | spake2/Cargo.toml | 2 | ||||
-rw-r--r-- | srp/Cargo.toml | 2 |
3 files changed, 4 insertions, 4 deletions
@@ -214,9 +214,9 @@ checksum = "2448f6066e80e3bfc792e9c98bf705b4b0fc6e8ef5b43e5889aff0eaa9c58743" [[package]] name = "num-bigint" -version = "0.2.6" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "090c7f9998ee0ff65aa5b723e4009f7b217707f1fb5ea551329cc4d6231fb304" +checksum = "4e0d047c1062aa51e256408c560894e5251f08925980e53cf1aa5bd00eec6512" dependencies = [ "autocfg 1.0.1", "num-integer", diff --git a/spake2/Cargo.toml b/spake2/Cargo.toml index 55bea6d..3814c83 100644 --- a/spake2/Cargo.toml +++ b/spake2/Cargo.toml @@ -34,7 +34,7 @@ hex = "0.4" [dev-dependencies] bencher = "0.1" -num-bigint = "0.2" +num-bigint = "0.4" [[bench]] name = "spake2" diff --git a/srp/Cargo.toml b/srp/Cargo.toml index bb068c7..92748e3 100644 --- a/srp/Cargo.toml +++ b/srp/Cargo.toml @@ -11,7 +11,7 @@ keywords = ["crypto", "pake", "authentication"] categories = ["cryptography", "authentication"] [dependencies] -num-bigint = "0.2" +num-bigint = "0.4" generic-array = "0.14" digest = "0.9" lazy_static = "1.2" |