expeditionos 0.4.2

A small CPU game to play with fictional hardware.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(non_snake_case)]

use serde::Deserialize;

#[derive(Debug, Deserialize)]
pub struct Config {
    pub RAM: Vec<RAMs>
}

#[derive(Debug, Deserialize)]
pub struct RAMs {
    pub Order: usize,
    pub Capacity: u64,
    pub Technology: String,
    pub CPUReq: usize,
    pub OSReq: usize
}