1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/ext/io
Matt Mastracci 7e4ee02e2e
fix(ext/io): Fix NUL termination error in windows named pipes (#23379)
Due to a terminating NUL that was placed in a `r#` string, we were not
actually NUL-terminating pipe names on Windows. While this has no
security implications due to the random nature of the prefix, it would
occasionally cause random failures when the trailing garbage would make
the pipe name invalid.
2024-04-15 14:10:09 -06:00
..
12_io.js chore: update references to deno_std to use JSR (#23239) 2024-04-10 17:26:35 -04:00
Cargo.toml chore: forward v1.42.3 release commit to main (#23335) 2024-04-12 04:19:46 +00:00
fs.rs chore: update copyright to 2024 (#21753) 2024-01-01 19:58:21 +00:00
lib.rs chore: upgrade deno_core to 0.274.0 (#23344) 2024-04-12 21:45:38 +02:00
pipe.rs refactor(cli): clean up test runner channels (#22422) 2024-02-23 11:11:15 -07:00
README.md refactor(runtime): factor out deno_io extension crate (#18001) 2023-03-05 00:39:48 +00:00
winpipe.rs fix(ext/io): Fix NUL termination error in windows named pipes (#23379) 2024-04-15 14:10:09 -06:00

deno_io

This crate provides IO primitives for other Deno extensions, this includes stdio streams and abstraction over File System files.