Philip Craig
Philip Craig
If we do decide to support this, we shouldn't be reimplementing a debuginfod client in this crate, so decisions about where to store the downloaded file are not needed. Instead,...
This crate does build for `no_std` in CI, but I'm not sure how well that checks that its dependencies support `no_std`. The `miniz_oxide` error is because you don't have `alloc`,...
This will need an LZMA decoder, probably the `xz2` crate? Should this be a new cargo feature, or enabled for all linux systems?
This does work for me on macOS 10.14.
I haven't been able to reproduce this. The bt-test crate works on a fresh 10.15 install. I also tried adding a test that runs in github actions (https://github.com/philipc/backtrace-rs/commit/cf7b51d62d56d80dc2790913674327bef920a09b) and it...
@jrmuizel Could you check if https://github.com/philipc/backtrace-rs/commit/a97793894ce659c2557d770810658e786349ae05 is any better? I think this is more correct than before, but I am doubtful it will fix the problem you are seeing. I...
Changing `Symbol` to be `Clone` will require adding a lifetime parameter to `Symbol` (because the `'static` is a lie, the real lifetime is shorter than that). Doing that isn't going...
Thanks for the response! > I haven’t given it a deep inspection unfortunately but it does appear to have a similar generic api like faerie, which means you may or...
What might make sense is for cranelift to switch to using object-write directly, since cranelift-module is kind of duplicating a lot of the higher API that faerie provides.
Do you have a more realistic example of a type that changes the length like that? It seems to me that in practice having the length change would imply mutation,...