adblock-list-compiler 0.0.8

CLI tool to compile multiple adblock list sources into a single file
Documentation
1
2
3
4
5
6
7
8
9
10
use std::process::ExitCode;

use adblock_list_compiler::run;

#[tokio::main]
async fn main() -> ExitCode {
    let exit_code = run().await;

    ExitCode::from(exit_code)
}