Dan Gohman
Dan Gohman
rust-lang/cargo#10706 switched the `cargo init --lib`-generated src/lib.rs to use a function and `use super::*;` inside the `mod test`. This makes it easier for new users to write their own functions...
Would you be willing to bump caps' MSRV to 1.48, so that [rust-errno] can migrate from winapi to windows-sys? This isn't urgent, but if it works out, it would eliminate...
Cargo-count incorrectly reports that the following code has no instances of "unsafe": ```rust fn test() { unsafe { match doit() { } } } ``` ``` Gathering information... Language Files...
I maintain some libraries that have sync and async users. The async users wrap calls in `spawn_blocking`, which works, but isn't ergonomic and may be suboptimal. `maybe_async` looks like it...
[rustc-std-workspace-core](https://crates.io/crates/rustc-std-workspace-core) is an explicitly empty crate used by some low-level no_std crates in the Rust ecosystem, such as libc, when the rustc-dep-of-std feature is enabled. It's completely empty, so it...
CG and WG videoconference meetings are currently hosted with Google Hangouts. When I attempt to attend meetings with Firefox, I'm presented with a page which says: > For some web...
Would it be worth it to have an optional implementation of [`Arbitrary`](https://docs.rs/arbitrary/1.0.1/arbitrary/trait.Arbitrary.html) (in the [arbitrary crate](https://crates.io/crates/arbitrary)) for bitflags types, to make it easier to use them in fuzzing? I'm imagining...
Add the `PathCchCanonicalizeEx`, `PathCchCombineEx`, and `PathCchAppendEx` functions, in the `shellapi` module.
`ENOTCAPABLE` was an error code that is used as part of the rights system, from CloudABI. There is a set of flags associated with each file descriptor listing which operations...
https://github.com/bytecodealliance/wit-bindgen/pull/269 adds support for parsing the `future` type. There are many `todo!`s left for the implementation in the canonical ABI and bindings implementations.