mirror of
https://github.com/nushell/nushell
synced 2024-11-17 02:07:58 +00:00
3ac36879e0
Fixes #7246 and #1898. Darren noticed that `open /dev/random` could not be interrupted by `ctrl+c`. Thankfully the solution was very simple; it looks like we just forgot to check `ctrlc` in the `impl Iterator for RawStream`! To reproduce this, just run `open /dev/random` and then cancel it with `ctrl+c`. |
||
---|---|---|
.. | ||
src | ||
tests | ||
Cargo.toml | ||
LICENSE | ||
README.md |
nu-protocol
The nu-protocol crate holds the definitions of structs/traits that are used throughout Nushell. This gives us one way to expose them to many other crates, as well as make these definitions available to each other, without causing mutually recursive dependencies.