wpilib-hal 0.1.1

Low-level bindings to WPILib's HAL. DO NOT USE THIS YET. THIS IS JUST TO SECURE THE NAME.
//! This is a highly experimental crate providing bindings to WPILIB's HAL.
//! This crate is not affiliated with FIRST, FRC, or National Instruments in
//! any way
#![feature(str_escape)]
#![feature(custom_attribute)]
#![feature(field_init_shorthand)]

#![cfg_attr(feature = "clippy", feature(plugin))]
#![cfg_attr(feature = "clippy", plugin(clippy))]

#![warn(missing_docs)]
#![allow(dead_code)]

#[macro_use]
extern crate lazy_static;
extern crate time;

/// Contains aggregate error types and macros for calling FFI functions
#[macro_use]
pub mod error;

/// Contains bindings to the HAL
pub mod hal;

#[allow(non_camel_case_types, non_snake_case)]
mod raw;

pub use hal::*;