1 2 3 4 5 6 7 8 9 10 11 12 13 14
#![no_std] extern crate alloc; pub mod boot_info; pub mod ramdisk; use alloc::{string::String, vec::Vec}; use serde::Deserialize; #[derive(Clone, Debug, Deserialize)] pub struct SeedConfig { pub user_tasks: Vec<String>, }