From abed3a954ab597268e68d1aebb5763e0f954dd5c Mon Sep 17 00:00:00 2001 From: Nathaniel Cook Date: Mon, 8 Jan 2024 12:47:39 -0700 Subject: [PATCH] fix: use base64-url 2.0.2 with std feature --- Cargo.toml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index b6b6dac..b58c136 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,12 +13,7 @@ dag-json = ["dep:libipld-json"] [dependencies] anyhow = "1.0.69" -base64-url = { version = "2.0.1", default-features = false } -# base64-url no longer honors the std feature, we need to explicitly enable it on base64. -base64 = { version = "0.21", default-features = false, features = [ - "alloc", - "std", -] } +base64-url = { version = "2.0.2", feautres = ["std"] } libipld = { version = "0.16.0", default-features = false, features = [ "serde-codec", ] }