blob: f12b8c848375036bf14325189e3df59d7c039a2a [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.
#![feature(async_await)]
// This is needed for the pseudo_directory nesting in crate::model::tests
#![recursion_limit = "256"]
pub mod clonable_error;
pub mod directory_broker;
pub mod elf_runner;
pub mod framework;
pub mod fuchsia_boot_resolver;
pub mod fuchsia_pkg_resolver;
pub mod klog;
pub mod model;
pub mod startup;
pub mod work_scheduler;
mod constants;
mod process_launcher;