-
I'm developing a toy kernel and created a proc-macro for annotation packed structs. Using the macro along with `#[derive(Debug)]` causes an ice.
### Code
src/main.rs
```Rust
extern crate packe…
-
### Checklist
- [X] I've looked through the [issues and pull requests](https://github.com/cross-rs/cross/issues?q=) for similar reports
### Describe your issue
I have a project that uses `rdkafka` …
-
Compiling my crate that uses `serde` with `RUSTFLAGS="-Z sanitizer=leak"` results in:
```
error: Only executables, staticlibs, cdylibs, dylibs and rlibs can be compiled with `-Z sanitizer`
```
V…
-
On 826f2c41958ab3bfb0ba27bca8bf8e0e38be6e71 I am able to panic named by loading a zone with ~10000 AAAA records and requesting an AXFR on that zone.
The panic is from the first assert here:
htt…
-
I have a Bluttooth dongle10, when it plugged, the host example thrown an exception.
```
usbip git:(master) sudo env RUST_LOG=info RUST_BACKTRACE=full cargo run --example host
Compiling usbip…
-
Moving this over here from [Whisperfish #393](https://gitlab.com/whisperfish/whisperfish/-/issues/393)
Is this still relevant/possible? I couldn't figure out what commit I was on back then...
``…
-
I am running `openethereum --config /etc/parity/parity.toml db reset 64` to reset my block state to do some testing. This works with openethereum 3.2.3, where the client will just start syncing up to…
Asara updated
3 years ago
-
There is some amount of memory being allocated during the `remap` function that isn't getting cleaned up.
This is with the latest commit on main. So I imagine it's something to do with rayon or the…
-
### Code
```Rust
pub struct Inner {
field: &'a T,
}
trait MyTrait {
type MyItem;
}
trait OtherTrait {}
unsafe impl
where
'a: 'static,
T: MyTrait,
{
}
unsaf…
-
I just learned about miri, and I'm trying to use it in a project and I cannot get it to run basically anything, I get errors in very basic "tests". e.g. this one.
```rust
#[cfg(test)]
mod tests {…