nnapi 0.2.0

Provides a safe abstraction of the Android NNAPI FFI bindings.
Documentation
//! # Safe and abstracted Rust bindings for Android Neural Networks API

mod burst;
mod compilation;
mod error;
mod event;
mod execution;
mod model;
mod operand;

pub use burst::*;
pub use compilation::*;
pub use error::*;
pub use event::*;
pub use execution::*;
pub use model::*;
pub use operand::*;
pub mod nnapi_sys {
    pub use ::nnapi_sys::*;
}