1
0
Fork 0
forked from AbleOS/ableos
ableos/kernel/src/lib.rs

20 lines
301 B
Rust
Raw Normal View History

2022-04-11 17:23:11 -05:00
//! The ableOS kernel.
#![feature(alloc_error_handler, prelude_import)]
2022-05-07 07:08:34 -05:00
#![no_std]
#![deny(missing_docs)]
extern crate alloc;
2022-05-07 07:08:34 -05:00
pub mod allocator;
pub mod task;
2022-03-02 08:38:22 -06:00
use versioning::Version;
2022-04-11 17:23:11 -05:00
/// Kernel's version
2022-03-02 08:38:22 -06:00
pub const KERNEL_VERSION: Version = Version {
major: 0,
minor: 1,
patch: 2,
};