starnix_modules_magma/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// Increase recursion limit because LTO causes overflow.
6#![recursion_limit = "256"]
7
8mod ffi;
9mod file;
10mod image_file;
11mod init;
12#[allow(clippy::module_inception)]
13mod magma;
14
15pub use ffi::get_magma_params;
16pub use file::MagmaFile;
17pub use init::magma_device_init;