1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(clippy::bool_to_int_with_if)]
#![deny(clippy::print_stderr)]
#![deny(clippy::print_stdout)]
#![deny(clippy::unused_async)]

#[cfg(feature = "communication")]
pub mod communication;

#[cfg(feature = "formatting")]
pub mod formatting;

pub mod configuration;
#[cfg(any(feature = "process", feature = "wasm"))]
pub mod plugins;

#[cfg(feature = "async_runtime")]
pub mod async_runtime;