diff options
| author | Fuwn <[email protected]> | 2023-04-18 21:39:58 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-18 21:39:58 +0000 |
| commit | 98d98e80d71bf98a26fe8865f5339cd2a5b25b2b (patch) | |
| tree | c2d20dc2738fdd16833285c56199735e4c4e3ce2 | |
| parent | build(cargo): use tokio async runtime by default (diff) | |
| download | windmark-0.3.6.tar.xz windmark-0.3.6.zip | |
build(cargo-make): update runner definitionsv0.3.6
| -rw-r--r-- | Makefile.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.toml b/Makefile.toml index 0b44382..3215d13 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -4,12 +4,12 @@ command = "cargo" toolchain = "nightly" [tasks.check] -args = ["check", "--features", "logger,auto-deduce-mime,response-macros,${@}"] +args = ["check", "--no-default-features", "--features", "logger,auto-deduce-mime,response-macros,${@}"] command = "cargo" toolchain = "nightly" [tasks.clippy] -args = ["clippy", "--features", "logger,auto-deduce-mime,response-macros,${@}"] +args = ["clippy", "--no-default-features", "--features", "logger,auto-deduce-mime,response-macros,${@}"] command = "cargo" toolchain = "nightly" |