Skip to main content

fuchsia_repo/
lib.rs

1// Copyright 2022 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#![allow(clippy::result_large_err)]
6#![allow(clippy::let_unit_value)]
7
8pub mod range;
9pub mod repo_builder;
10pub mod repo_keys;
11pub mod repository;
12pub mod resource;
13pub mod test_utils;
14pub mod util;
15
16#[cfg(not(target_os = "fuchsia"))]
17pub mod manager;
18#[cfg(not(target_os = "fuchsia"))]
19pub mod package_manifest_watcher;
20#[cfg(not(target_os = "fuchsia"))]
21pub mod repo_client;
22#[cfg(not(target_os = "fuchsia"))]
23pub mod server;