ableos/kernel/src/lib.rs

21 lines
315 B
Rust
Raw Normal View History

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