omaha_client/
lib.rs

1// Copyright 2019 The Fuchsia Authors
2//
3// Licensed under a BSD-style license <LICENSE-BSD>, Apache License, Version 2.0
4// <LICENSE-APACHE or https://www.apache.org/licenses/LICENSE-2.0>, or the MIT
5// license <LICENSE-MIT or https://opensource.org/licenses/MIT>, at your option.
6// This file may not be copied, modified, or distributed except according to
7// those terms.
8
9//! This is for Omaha client binaries written in Rust.
10
11#![recursion_limit = "256"]
12#![allow(clippy::let_unit_value)]
13
14pub mod app_set;
15pub mod async_generator;
16pub mod clock;
17pub mod common;
18pub mod configuration;
19pub mod cup_ecdsa;
20pub mod http_request;
21pub mod http_uri_ext;
22pub mod installer;
23pub mod metrics;
24pub mod policy;
25pub mod protocol;
26pub mod request_builder;
27pub mod state_machine;
28pub mod storage;
29pub mod time;
30pub mod unless;
31pub mod version;