1
0
mirror of https://github.com/fafhrd91/actix-net synced 2025-06-26 17:27:42 +02:00

feat: server shutdown signal (#676)

This commit is contained in:
Rob Ede
2025-05-09 19:30:11 +01:00
committed by GitHub
parent 270360e095
commit 064da0e3ff
14 changed files with 470 additions and 292 deletions

View File

@ -1,6 +1,8 @@
_list:
@just --list
toolchain := ""
# Check project.
check: && clippy
just --unstable --fmt --check
@ -42,8 +44,6 @@ non_linux_all_features_list := ```
```
all_crate_features := if os() == "linux" { "--all-features" } else { "--features='" + non_linux_all_features_list + "'" }
toolchain := ""
# Run Clippy over workspace.
clippy:
cargo {{ toolchain }} clippy --workspace --all-targets {{ all_crate_features }}