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
//! A Rust-based simulated DOM (browser-independent replacement for web_sys)

#![feature(arc_new_cyclic)]
#![deny(
    missing_docs,
    // missing_debug_implementations,
    // missing_copy_implementations,
    trivial_casts,
    trivial_numeric_casts,
    unsafe_code,
    // unstable_features, someday :)
    unused_qualifications
)]

pub(crate) mod behavior;
pub mod config;
pub mod error;
pub(crate) mod internal_prelude;
pub mod named_node_map;

pub mod node;
pub mod node_list;
pub mod sandbox;
pub mod tests;
pub mod window;