intuicio_essentials/
lib.rs

1pub mod data {
2    pub use intuicio_data::*;
3}
4pub mod core {
5    pub use intuicio_core::*;
6}
7pub mod derive {
8    pub use intuicio_derive::*;
9}
10#[cfg(feature = "plugins")]
11pub mod plugins {
12    pub use intuicio_plugins::*;
13}
14#[cfg(feature = "vm")]
15pub mod vm {
16    pub use intuicio_backend_vm::*;
17}
18pub mod prelude {
19    #[cfg(feature = "vm")]
20    pub use intuicio_backend_vm::prelude::*;
21    pub use intuicio_core::prelude::*;
22    pub use intuicio_data::prelude::*;
23    pub use intuicio_derive::*;
24    #[cfg(feature = "plugins")]
25    pub use intuicio_plugins::*;
26}