From fd9bde871b86f8cf3cbc5b695ed0ce1c82f2d387 Mon Sep 17 00:00:00 2001 From: Nathaniel Cook Date: Tue, 12 Dec 2023 06:54:59 -0700 Subject: [PATCH] fix: update base64-url dep with std feature --- Cargo.toml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 59b1a98..8732c34 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -6,13 +6,19 @@ authors = ["Nathaniel Cook "] license = "MIT OR Apache-2.0" description = "ipld dag-jose codec" repository = "https://github.com/ceramicnetwork/rust-dag-jose" +resolver = "2" [features] dag-json = ["dep:libipld-json"] [dependencies] anyhow = "1.0.69" -base64-url = "2.0.0" +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", +] } libipld = { version = "0.16.0", default-features = false, features = [ "serde-codec", ] }