From 49e0fc8c17dfaa95d80951a2176f9d31ee08f6b0 Mon Sep 17 00:00:00 2001 From: ngutech21 Date: Sat, 23 Mar 2024 08:23:32 +0100 Subject: [PATCH] chore: update base64 --- Cargo.lock | 8 +++++++- moksha-core/Cargo.toml | 2 +- moksha-core/README.md | 3 ++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index a4e8df40..57208fa2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -298,6 +298,12 @@ version = "0.21.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" +[[package]] +name = "base64" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9475866fec1451be56a3c2400fd081ff546538961565ccb5b7142cbd22bc7a51" + [[package]] name = "base64ct" version = "1.6.0" @@ -1795,7 +1801,7 @@ name = "moksha-core" version = "0.2.1" dependencies = [ "anyhow", - "base64 0.21.7", + "base64 0.22.0", "bitcoin_hashes 0.13.0", "getrandom", "hex", diff --git a/moksha-core/Cargo.toml b/moksha-core/Cargo.toml index c44ca5f6..47052b0e 100644 --- a/moksha-core/Cargo.toml +++ b/moksha-core/Cargo.toml @@ -13,7 +13,7 @@ path = "src/lib.rs" [dependencies] anyhow = "1.0.79" url = "2.5.0" -base64 = "0.21.7" +base64 = "0.22.0" bitcoin_hashes = "0.13.0" rand = "0.8.5" secp256k1 = { version = "0.28.2", features = ["rand", "serde"] } diff --git a/moksha-core/README.md b/moksha-core/README.md index fad906c4..9e7870aa 100644 --- a/moksha-core/README.md +++ b/moksha-core/README.md @@ -8,4 +8,5 @@ To use Moksha Core in your Rust project, simply add it as a dependency in your ` ```toml [dependencies] -moksha-core = "0.1.0" +moksha-core = "0.2.1" +```