spider_network_blocker 0.0.86

Web crawler network blocking urls and patterns.
Documentation
/// Adblock patterns.
pub mod adblock;
/// Lock-free dynamic block list for runtime seeding.
pub mod dynamic_blocklist;
/// interception manager
pub mod intercept_manager;
/// Scripts to block;
pub mod scripts;
/// Trie tree.
pub mod trie;
/// Xhr block patterns.
pub mod xhr;

/// Extra block patterns merged at build time from a private source. Compiled
/// ONLY under the opt-in `private_lists` feature — the default build (and any
/// embedded/cross build that doesn't opt in) never references OUT_DIR or this
/// module, so it's byte-identical to the pre-feature crate. Generated by build.rs.
#[cfg(feature = "private_lists")]
mod extra_patterns {
    include!(concat!(env!("OUT_DIR"), "/extra_patterns.rs"));
}