Jeremy Fitzhardinge
Jeremy Fitzhardinge
Basically the same bug as https://github.com/libunwind/libunwind/issues/16 - > The implementation of `dl_iterate_phdr` in glibc both takes locks, and allocates memory. People hit this sporadically in production. > Barring a fix...
### What Operating System(s) are you seeing this problem on? Linux Wayland ### WezTerm version wezterm 20220606-221602-a323935b ### Did you try the latest nightly build to see if the issue...
The suggestion original line snippets are missing the first character on multiline fixes. For example, a clippy warning about a redundant return at https://github.com/facebookexperimental/eden/blob/139717db04a9a28fca7f3d81553275198bbbb8a1/eden/mononoke/sshrelay/src/lib.rs#L165 shows a fix with the original...
Current rustdoc does way too much to implement doctests - it internally parses the code, extracts the test code, feeds it to the compiler and then runs the tests. It...
**Problem** In cargo metadata, the `name` field in `deps` has `-` transformed to `_`, which means you need to normalize -/_ in order to compare it with the `name` field...
I assume this is one of the template issues @emilio has mentioned before, but here it is for completeness. Input: ```c++ namespace { namespace { template < template < typename...
This implements an interrupt-driven async i2c master. It is based on https://github.com/embassy-rs/embassy/pull/914, a bit of https://github.com/embassy-rs/embassy/pull/978 and @ithinuel's https://github.com/ithinuel/rp2040-async-i2c.git This is still work-in-progress, and is currently untested.
# Proposal This would stabilize two related options: - `--json=unused-externs` - `--json=unused-externs-silent` `--json=unused-externs` was introduced about 3 years ago in https://github.com/rust-lang/rust/pull/73945. When using json diagnostics, this flag causes rustc to...
[Rendered](https://github.com/jsgf/rfcs/blob/env-sandbox/text/0000-sandbox-environment.md) First draft proposal to add mechanism to precisely control environment available to the `env!`/`option_env!` macros. Implementation at https://github.com/jsgf/rust/tree/env-sandbox
It would be useful to be able to use `#[thread_local]` to have functionally `static` variables which are per-core on rp2040. Right now you can (with the nightly feature enabled) add...