From 84eb0308cae9a9d316faa20876149e50f351a185 Mon Sep 17 00:00:00 2001 From: Dave Huseby Date: Fri, 10 May 2024 18:41:21 -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 1e70340..fb4ea09 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "multihash" -version = "1.0.1" +version = "1.0.2" edition = "2021" authors = ["Dave Grantham "] description = "Multihash self-describing cryptographic hash data" @@ -17,7 +17,7 @@ blake3 = { version = "1.5.1", features = ["traits-preview", "zeroize"] } digest = "0.10" hex = "0.4" md-5 = "0.10" -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" }