diff options
| author | Fuwn <[email protected]> | 2023-04-18 21:29:47 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-04-18 21:29:47 +0000 |
| commit | 49cd06600431bc314e9c1cebfc73ecfbe5d9f894 (patch) | |
| tree | 214acfd8abe32069f6af5001f54bf8c6fa4dab24 /Makefile.toml | |
| parent | feat: improve macro hygiene (diff) | |
| download | windmark-49cd06600431bc314e9c1cebfc73ecfbe5d9f894.tar.xz windmark-49cd06600431bc314e9c1cebfc73ecfbe5d9f894.zip | |
feat: async-std support !!
Diffstat (limited to 'Makefile.toml')
| -rw-r--r-- | Makefile.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.toml b/Makefile.toml index 525424a..0b44382 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -4,12 +4,12 @@ command = "cargo" toolchain = "nightly" [tasks.check] -args = ["check"] +args = ["check", "--features", "logger,auto-deduce-mime,response-macros,${@}"] command = "cargo" toolchain = "nightly" [tasks.clippy] -args = ["clippy"] +args = ["clippy", "--features", "logger,auto-deduce-mime,response-macros,${@}"] command = "cargo" toolchain = "nightly" |