partial-io icon indicating copy to clipboard operation
partial-io copied to clipboard

Rust library that provides helpers for testing resilience of I/O operations.

Results 11 partial-io issues
Sort by recently updated
recently updated
newest added

Bumps [libc](https://github.com/rust-lang/libc) from 0.2.134 to 0.2.138. Release notes Sourced from libc's releases. 0.2.138 What's Changed Fix typo: readfs -> readfds by @​giraffate in rust-lang/libc#2981 linux: Add POSIX_SPAWN_SETSID flag by @​HarveyHunt...

dependencies

Bumps [syn](https://github.com/dtolnay/syn) from 1.0.100 to 1.0.105. Release notes Sourced from syn's releases. 1.0.105 Improve parse errors related to dyn and impl type syntax (#1245) 1.0.104 Add PathArguments::is_none() 1.0.103 Implement PartialOrd...

dependencies

Bumps [futures-channel](https://github.com/rust-lang/futures-rs) from 0.3.24 to 0.3.25. Release notes Sourced from futures-channel's releases. 0.3.25 Fix soundness issue in join! and try_join! macros (#2649) Implement Clone for sink::Drain (#2650) Changelog Sourced from...

dependencies

Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.46 to 1.0.47. Release notes Sourced from proc-macro2's releases. 1.0.47 Fix integer overflow when nesting depth of nested comments exceeds 4 billion (#357) Commits 47c91c8 Release 1.0.47...

dependencies

Bumps [unicode-ident](https://github.com/dtolnay/unicode-ident) from 1.0.4 to 1.0.5. Release notes Sourced from unicode-ident's releases. 1.0.5 Add keyword to crates.io metadata Commits f72cdd4 Release 1.0.5 1e397a7 Link to cast_possible_truncation false positive fed8ff2 Ignore...

dependencies

Bumps [futures-channel](https://github.com/rust-lang/futures-rs) from 0.3.24 to 0.3.27. Release notes Sourced from futures-channel's releases. 0.3.27 Add TryFlattenUnordered (#2577, #2590, #2606, #2607) Add AbortHandle::is_aborted (#2710) Add AbortRegistration::handle (#2712) Make BiLock strict-provenance compatible (#2716)...

dependencies

Bumps [proc-macro2](https://github.com/dtolnay/proc-macro2) from 1.0.46 to 1.0.52. Release notes Sourced from proc-macro2's releases. 1.0.52 Add Group::delim_span (#366) 1.0.51 Implement rustc's limit on the number of # used for delimiting a raw...

dependencies

Bumps [libc](https://github.com/rust-lang/libc) from 0.2.134 to 0.2.140. Release notes Sourced from libc's releases. 0.2.140 What's Changed linux-like: add AT_RECURSIVE constant by @​lucab in rust-lang/libc#3043 Set correct FD_SETSIZE for espidf by @​zRedShift...

dependencies

Bumps [unicode-ident](https://github.com/dtolnay/unicode-ident) from 1.0.4 to 1.0.8. Release notes Sourced from unicode-ident's releases. 1.0.8 Set html_root_url attribute 1.0.7 Documentation improvements 1.0.6 Documentation improvements 1.0.5 Add keyword to crates.io metadata Commits c4f4554...

dependencies

Let's say we have a `PartialOp::Limited(4096)`. If a write call results in 1024 bytes being written, we consume the entire `PartialOp::Limited`. Because of buffering and such, this means that we...