rust-dominator/src/lib.rs

22 lines
314 B
Rust
Raw Normal View History

2018-03-15 06:54:18 -04:00
#![recursion_limit="128"]
#![warn(unreachable_pub)]
2019-01-08 05:14:15 -05:00
#![deny(warnings)]
2018-03-15 06:54:18 -04:00
2018-02-21 01:37:09 -05:00
2018-11-01 07:40:31 -04:00
#[macro_use]
2018-02-25 06:58:20 -05:00
mod macros;
mod utils;
2018-02-25 06:58:20 -05:00
mod callbacks;
mod operations;
mod dom_operations;
2018-02-21 01:37:09 -05:00
mod dom;
2018-02-25 06:58:20 -05:00
2018-02-21 01:37:09 -05:00
pub use dom::*;
2018-02-25 06:58:20 -05:00
pub mod traits;
2018-03-12 20:09:44 -04:00
pub mod animation;
2018-11-01 07:40:31 -04:00
pub mod routing;
pub mod events;
2018-02-21 01:37:09 -05:00
pub use web_sys::HtmlElement;
pub use web_sys::SvgElement;