nimbus_fml/lib.rs
1/* This Source Code Form is subject to the terms of the Mozilla Public
2* License, v. 2.0. If a copy of the MPL was not distributed with this
3* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5mod backends;
6pub mod command_line;
7pub(crate) mod defaults;
8mod editing;
9pub mod error;
10pub(crate) mod frontend;
11pub mod intermediate_representation;
12pub mod parser;
13pub(crate) mod schema;
14pub mod util;
15
16cfg_if::cfg_if! {
17 if #[cfg(feature = "client-lib")] {
18 pub mod client;
19 pub use crate::client::*;
20 }
21}
22
23#[cfg(test)]
24pub mod fixtures;
25
26const SUPPORT_URL_LOADING: bool = true;