From 8769cde33caba5ed57992845436f991a95780346 Mon Sep 17 00:00:00 2001 From: Dave Huseby Date: Fri, 10 May 2024 18:42:30 -0600 Subject: [PATCH] fix multibase dependency Signed-off-by: Dave Huseby --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b95cbd5..1e626cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multisig" -version = "1.0.2" +version = "1.0.3" edition = "2021" authors = ["Dave Grantham "] description = "Multisig self-describing multicodec implementation for digital signatures" @@ -14,7 +14,7 @@ default = ["serde"] [dependencies] blsful = { version = "2.5", git = "https://github.com/mikelodder7/blsful.git" } elliptic-curve = "0.13" -multibase = "0.9" +multibase = { version = "1.0", git = "https://github.com/cryptidtech/rust-multibase.git" } multicodec = { version = "1.0", git = "https://github.com/cryptidtech/rust-multicodec.git" } multitrait = { version = "1.0", git = "https://github.com/cryptidtech/multitrait.git" } multiutil = { version = "1.0", git = "https://github.com/cryptidtech/multiutil.git" }