oxide-update-engine-types 0.1.2

Serializable types for the oxide-update-engine framework.
Documentation
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

#![cfg_attr(doc_cfg, feature(doc_cfg))]
// Setting html_root_url allows cross-crate readme links to resolve. This
// line is updated by cargo-release.
#![doc(html_root_url = "https://docs.rs/oxide-update-engine-types/0.1.2")]

//! Types for `oxide-update-engine`.
//!
//! This crate contains the serializable types used by the update
//! engine: events, event buffers, step specifications, and errors.
//! It has no dependency on the execution engine itself, making it
//! suitable for consumers that only need to read or display events.

pub mod buffer;
pub mod errors;
pub mod events;
mod macros;
pub mod schema;
pub mod spec;