From 895539750fcadddfc7843466b0c61649033e867f Mon Sep 17 00:00:00 2001 From: Zakarum Date: Fri, 8 Nov 2024 22:31:13 +0100 Subject: [PATCH] Fix no_std build --- src/relation/components.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/relation/components.rs b/src/relation/components.rs index 0fdaf8e..75d8846 100644 --- a/src/relation/components.rs +++ b/src/relation/components.rs @@ -1,4 +1,4 @@ -use alloc::vec::Vec; +use alloc::{vec, vec::Vec}; use core::{marker::PhantomData, mem::ManuallyDrop}; use smallvec::SmallVec;