emmylua_doc_cli 0.22.0

A command-line tool for generating lua documentation.
Documentation
1
2
3
4
5
6
7
8
9
10
use emmylua_doc_cli::{CmdArgs, Parser, run_doc_cli};
use mimalloc::MiMalloc;

#[global_allocator]
static GLOBAL: MiMalloc = MiMalloc;

fn main() -> Result<(), Box<dyn std::error::Error>> {
    let cmd_args = CmdArgs::parse();
    run_doc_cli(cmd_args)
}