master
Able 2022-01-19 13:04:43 -06:00
parent bd034b711b
commit 8b4036d55d
Signed by: able
GPG Key ID: D164AF5F5700BE51
2 changed files with 5 additions and 2 deletions

View File

@ -9,7 +9,7 @@ edition = "2021"
[dependencies.bincode]
git = "https://github.com/bincode-org/bincode.git"
default-features = false
features = ["serde_no_std"]
features = ["serde_no_std", "derive"]
[dependencies.serde]

View File

@ -1,4 +1,7 @@
#![no_std]
extern crate alloc;
use alloc::vec::Vec;
use bincode::{Decode, Encode};
@ -13,7 +16,7 @@ pub type WindowBar = Vec<WindowOption>;
pub type WindowID = u64;
#[derive(Encode, Decode, PartialEq, Debug)]
pub struct Window {
bar: WindowBar,
// bar: WindowBar,
}
// TODO: Seperate out this versioning into ableos-ver