From f06fd8261626cbb6c85e0f6e671df80259fb1bdc Mon Sep 17 00:00:00 2001 From: asonix Date: Sat, 25 Jul 2020 09:21:07 -0500 Subject: [PATCH] Update to rsa 0.3 --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index be33555..371c0b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "rsa-magic-public-key" description = "Converting between the Magic Public Key format and a RustCrypto RSA type" -version = "0.1.1" +version = "0.2.0" license-file = "LICENSE" authors = ["asonix "] edition = "2018" @@ -10,9 +10,9 @@ repository = "https://git.asonix.dog/Aardwolf/rsa-magic-public-key" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -base64 = "0.11" +base64 = "0.12" num-bigint-dig = "0.6" -rsa = "0.2.0" +rsa = "0.3.0" thiserror = "1.0.9" [dev-dependencies]