1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-26 16:09:27 -05:00
denoland-deno/ext/web
Nugine 9686a00419
chore: upgrade base64-simd to 0.8.0 (#17463)
This PR upgrades the `base64-simd` dependency of `deno_web`.

base64-simd v0.8 supports `forgiving_decode` in ["copy"
mode](https://docs.rs/base64-simd/0.8.0/base64_simd/fn.forgiving_decode.html),
["inplace"
mode](https://docs.rs/base64-simd/0.8.0/base64_simd/fn.forgiving_decode_inplace.html)
or ["alloc"
mode](https://docs.rs/base64-simd/0.8.0/base64_simd/fn.forgiving_decode_to_vec.html).
When #17159 resolves, they can be used to reduce unnecessary allocations
and copies.

base64-simd v0.8 also supports AArch64 SIMD out of box.
2023-01-18 20:05:24 +05:30
..
benches chore: use rustfmt imports_granularity option (#17421) 2023-01-14 23:18:58 -05:00
00_infra.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
01_dom_exception.js chore: update dlint to v0.37.0 for GitHub Actions (#17295) 2023-01-16 17:17:18 +01:00
01_mimesniff.js perf(ext,runtime): remove using SafeArrayIterator from for-of (#17255) 2023-01-06 21:45:23 +09:00
02_event.js perf(ext,runtime): remove using SafeArrayIterator from for-of (#17255) 2023-01-06 21:45:23 +09:00
02_structured_clone.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
02_timers.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
03_abort_signal.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
04_global_interfaces.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
05_base64.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
06_streams.js chore: update dlint to v0.37.0 for GitHub Actions (#17295) 2023-01-16 17:17:18 +01:00
06_streams_types.d.ts chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
08_text_encoding.js chore: update dlint to v0.37.0 for GitHub Actions (#17295) 2023-01-16 17:17:18 +01:00
09_file.js chore: update dlint to v0.37.0 for GitHub Actions (#17295) 2023-01-16 17:17:18 +01:00
10_filereader.js perf(ext,runtime): remove using SafeArrayIterator from for-of (#17255) 2023-01-06 21:45:23 +09:00
11_blob_url.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
12_location.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
13_message_port.js chore: update dlint to v0.37.0 for GitHub Actions (#17295) 2023-01-16 17:17:18 +01:00
14_compression.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
15_performance.js chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
blob.rs chore: use rustfmt imports_granularity option (#17421) 2023-01-14 23:18:58 -05:00
Cargo.toml chore: upgrade base64-simd to 0.8.0 (#17463) 2023-01-18 20:05:24 +05:30
compression.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
internal.d.ts chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
lib.deno_web.d.ts chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00
lib.rs chore: upgrade base64-simd to 0.8.0 (#17463) 2023-01-18 20:05:24 +05:30
message_port.rs chore: use rustfmt imports_granularity option (#17421) 2023-01-14 23:18:58 -05:00
README.md Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +02:00
timers.rs chore: update copyright year to 2023 (#17247) 2023-01-02 21:00:42 +00:00

deno web

Op crate that implements Event, TextEncoder, TextDecoder and File API (https://w3c.github.io/FileAPI).

Testing for text encoding is done via WPT in cli/.