From 16d9b955f26d8627f0349fce93bfb7af67e38470 Mon Sep 17 00:00:00 2001 From: clearloop Date: Thu, 22 Feb 2024 11:28:13 +0100 Subject: [PATCH] fix(alpha): build problems --- alpha/state/src/lib.rs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/alpha/state/src/lib.rs b/alpha/state/src/lib.rs index 60491e2..f6b8408 100644 --- a/alpha/state/src/lib.rs +++ b/alpha/state/src/lib.rs @@ -1,19 +1,22 @@ #![no_std] -use alpha_io::{Resource, State}; +use alpha_io::{Label, Resource}; use gstd::prelude::*; #[gmeta::metawasm] pub mod metafns { - pub type State = State; + pub type State = alpha_io::State; /// Returns all domains (pages) that matches the search input. - pub fn labels(state: State) -> Vec