akari 0.2.7

Dynamic & Weakly Typed Programming Powered by Rust
Documentation
// Export public APIs 
#[cfg(feature = "dynamic")] 
mod object; 
#[cfg(feature = "dynamic")]
pub use object::*; 

#[cfg(feature = "template")]
mod template; 
#[cfg(feature = "template")]
pub use template::parse::{Token, tokenize};
#[cfg(feature = "template")]
pub use template::compile::compile;
#[cfg(feature = "template")]
pub use template::template_manager::TemplateManager; 

#[cfg(feature = "object_macro")]
pub use akari_macro::object; 

#[cfg(any(feature = "extension"))]
pub mod extensions;