//! Low level core functionality for [`pros-rs`](https://crates.io/crates/pros).
//! The core crate is used in all other crates in the pros-rs ecosystem.
//!
//! Included in this crate:
//! - Global allocator: [`pros_alloc`]
//! - Errno handling: [`error`]
//! - Serial terminal printing: [`io`]
//! - No-std [`Instant`](time::Instant)s: [`time`]
//! - Synchronization primitives: [`sync`]
//! - FreeRTOS task management: [`task`]
extern crate alloc;