miasma 0.1.21

Trap malicious AI web scrapers in an endless pit of poisoned training data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod app;
mod config;
mod routes;
mod utils;
mod version_check;

use routes::new_miasma_router;

pub use app::Miasma;
pub use config::MiasmaConfig;
pub use version_check::check_for_new_version;

const USER_AGENT: &str = concat!(
    env!("CARGO_PKG_NAME"),
    "/",
    env!("CARGO_PKG_VERSION"),
    " (github.com/austin-weeks/miasma)"
);