master
Able 2022-01-19 13:01:42 -06:00
parent 8a97f1bc6f
commit bd034b711b
Signed by: able
GPG Key ID: D164AF5F5700BE51
3 changed files with 11 additions and 2 deletions

3
.config/cargo.toml Normal file
View File

@ -0,0 +1,3 @@
[unstable]
build-std = ["core", "compiler_builtins", "alloc"]
build-std-features = ["compiler-builtins-mem"]

View File

@ -11,3 +11,9 @@ git = "https://github.com/bincode-org/bincode.git"
default-features = false
features = ["serde_no_std"]
[dependencies.serde]
version = "*"
default-features = false
features = ["derive", "alloc"]

View File

@ -1,8 +1,8 @@
#[no_std]
#![no_std]
use alloc::vec::Vec;
use bincode::{Decode, Encode};
#[derive(Encode, Decode, PartialEq, Debug)]
pub struct WindowOption {
// funct: WindowFunction,
symbol: char,