1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#[cfg(all(feature = "hot_internal", feature = "bevy"))]
mod hot_internal;

#[cfg(feature = "hot")]
mod hot;

#[cfg(not(any(feature = "hot", feature = "hot_internal")))]
mod cold;

#[cfg(any(feature = "hot", feature = "hot_internal"))]
pub mod internal_shared;

mod types;

#[cfg(feature = "bevy")]
pub mod bevy_support;
mod logger;

pub use dexterous_developer_macros::*;

pub use types::*;

#[cfg(feature = "hot")]
pub use hot::{run_reloadabe_app, HotReloadMessage};

#[cfg(feature = "cli")]
pub use hot::{
    compile_reloadable_libraries, run_existing_library, run_served_file, watch_reloadable,
};

#[cfg(feature = "bevy")]
pub use bevy_support::*;