1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-29 16:30:56 -05:00
denoland-deno/ext/flash
Mathias Lafeldt 1848c7e361
Fix: Honor linter rules in CI and locally (#15492)
RUSTFLAGS take precedence over `target.<triple>.rustflags`. Therefore,
setting the env var globally in CI would always override whatever linter
rules are allowed or denied in .cargo/config.toml.

With this change, we ensure that problems are detected both in CI and
locally, using either cargo clippy or lint.js.
2022-08-19 08:17:18 -04:00
..
01_http.js fix(ext/flash): concurrent response streams (#15493) 2022-08-19 10:14:56 +05:30
Cargo.toml feat(ext/flash): An optimized http/1.1 server (#15405) 2022-08-18 17:35:02 +05:30
chunked.rs feat(ext/flash): An optimized http/1.1 server (#15405) 2022-08-18 17:35:02 +05:30
lib.rs fix(ext/flash): concurrent response streams (#15493) 2022-08-19 10:14:56 +05:30
README.md feat(ext/flash): An optimized http/1.1 server (#15405) 2022-08-18 17:35:02 +05:30
request.rs fix(ext/flash): concurrent response streams (#15493) 2022-08-19 10:14:56 +05:30
sendfile.rs Fix: Honor linter rules in CI and locally (#15492) 2022-08-19 08:17:18 -04:00

flash

Flash is a fast HTTP/1.1 server implementation for Deno.

serve((req) => new Response("Hello World"));