>:(
This commit is contained in:
parent
cb25a50548
commit
edbbf71fa7
|
@ -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]
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue