refactor: Remove std but add alloc

This commit is contained in:
2022-08-05 14:11:44 +02:00
parent ab29780e14
commit 86c5892f00
3 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,9 @@
#![no_std]
extern crate alloc;
use crate::alloc::borrow::ToOwned;
use alloc::format;
use alloc::string::{String, ToString};
pub mod display;
#[derive(Copy, Clone)]