blob: 2a5728ee29e2fb8e802849b07bda26df437fee85 [file] [log] [blame]
// Copyright 2019 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! This is for Omaha client binaries written in Rust.
#![recursion_limit = "256"]
pub mod clock;
pub mod common;
pub mod configuration;
pub mod http_request;
pub mod installer;
pub mod metrics;
pub mod policy;
pub mod protocol;
pub mod request_builder;
pub mod state_machine;
pub mod storage;
pub mod time;
pub mod unless;