alkahest_hypervisor/
lib.rs

1//! # Alkahest - Hypervisor Type-1
2#![cfg_attr(not(test), no_std)]
3
4
5pub struct AlkahestEngine<C: Crucible> {
6    kernel: C
7}
8
9pub trait Crucible {}