diff --git a/.cargo/config.toml b/.cargo/config.toml index ac2b23f..26988f1 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,2 +1,9 @@ [target.x86_64-pc-windows-msvc] rustflags = ["-C", "target-feature=+crt-static"] + +[alias] +lint = "clippy -- -D warnings" +r = "run" +rr = "run --release" +b = "build" +br = "build --release"