From 0c341e354668d185e26f93aa035bc87efd589e57 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Mon, 13 Nov 2023 05:19:53 -0500 Subject: [PATCH] Fix no-std builds --- crypto/dkg/src/musig.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/dkg/src/musig.rs b/crypto/dkg/src/musig.rs index b4c57537..4d6b54c8 100644 --- a/crypto/dkg/src/musig.rs +++ b/crypto/dkg/src/musig.rs @@ -1,6 +1,6 @@ #[cfg(feature = "std")] use core::ops::Deref; -use std_shims::collections::HashSet; +use std_shims::{vec, vec::Vec, collections::HashSet}; #[cfg(feature = "std")] use std_shims::collections::HashMap;