libghost 0.4.6

The Rust, library-format distribution of libghost, a multi-language PROS (VEX robotics) template.
Documentation
//! Libghost (rs), a PROS-rs (VEX robotics) template.
//! Made by the 242 Firebirds robotics team.
//!
//! Provides a lightweight, yet heavily advanced, PROS-rs template.
//! Advantages:
//! - Animation-style autonomous functions.
//! - Dual movement modes - "Old" timing-based auton controls, and "new" PID-based controls.
//! - Live-updating driver control functions
//! - Dynamic keybinds that can be registered and handled live.
//!
//! View more info and examples! - https://template.firebirds.win

#![no_std]
#![allow(dead_code, unused_imports)]

// The module containing branding or ways to support us.
pub mod branding;
// The module containing your drivetrain and other user-control and autonomous functions.
pub mod drive;