From e73429b702edfc2c164abc806f6fd34f4be819f6 Mon Sep 17 00:00:00 2001 From: Jeff Burdges Date: Wed, 1 May 2024 06:26:17 +0200 Subject: [PATCH] serde_bytes is optional --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7c3bb40..592d627 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -64,12 +64,12 @@ alloc = [ "curve25519-dalek/alloc", "rand_core/alloc", "getrandom_or_panic/alloc", - "serde_bytes/alloc", + "serde_bytes?/alloc", ] std = [ "alloc", "getrandom", - "serde_bytes/std", + "serde_bytes?/std", "rand_core/std", "getrandom_or_panic/std", "chacha20poly1305/std",