ps-parser 0.1.0-pre

The Powershell Parser
Documentation
1
2
3
4
5
6
7
type DynError = Box<dyn std::error::Error>;
type DynResult<T> = core::result::Result<T, DynError>;

fn main() -> DynResult<()> {
    println!("cargo:rerun-if-changed=src/powershell.pest");
    Ok(())
}