hotload 1.2.0

Zero cost hot update dynamic library; supporting DLL, SO
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[macro_use]
extern crate log;

/// Re-export dlopen2 for use by hotload_macro generated code.
/// Users do NOT need to add dlopen2 to their Cargo.toml.
#[doc(hidden)]
pub extern crate dlopen2;

pub mod types;
pub mod hot_batch;
pub mod event;

type R<V = ()> = Result<V, Box<dyn std::error::Error + Send + Sync>>;

pub use hotload_macro::*;