1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// 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"]
#![warn(clippy::all)]
#![allow(clippy::let_unit_value)]
// TODO(fxbug.dev/123528): Remove unknown_lints after toolchain rolls.
#![allow(unknown_lints)]
// TODO(fxbug.dev/123778): Fix redundant async blocks.
#![allow(clippy::redundant_async_block)]

pub mod app_set;
pub mod clock;
pub mod common;
pub mod configuration;
pub mod cup_ecdsa;
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;