rust-dominator/src/lib.rs

22 lines
379 B
Rust
Raw Permalink Normal View History

#![warn(unreachable_pub)]
2019-01-08 05:14:15 -05:00
#![deny(warnings)]
2018-03-15 06:54:18 -04:00
#![cfg_attr(feature = "nightly", allow(incomplete_features))]
2022-05-25 18:54:12 -04:00
#![cfg_attr(feature = "nightly", feature(adt_const_params))]
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;
2019-06-20 19:57:47 -04:00
mod bindings;
2018-02-25 06:58:20 -05:00
mod callbacks;
mod operations;
2018-02-21 01:37:09 -05:00
mod dom;
2018-02-25 06:58:20 -05:00
2020-05-04 17:28:09 -04:00
pub use web_sys::ShadowRootMode;
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;