Juniper Tyree

Results 68 issues of Juniper Tyree

Followup to #393 Adds explicit variants in `ron::Error` for `serde` errors from [`serde::de::Error`](https://docs.rs/serde/latest/serde/de/trait.Error.html) (`serde::ser::Error` only has the `Error::custom` method). * [ ] I've included my change in `CHANGELOG.md`

I run `fossa analyze` on a Rust repo with a workspace [`Cargo.toml`](https://github.com/MomoLangenstein/necsim-rust/blob/main/Cargo.toml) file. My workspace contains several default members, which are all 'roots' of overlapping dependency trees of my project....

status: triaged

With the latest nightly (2022-08-13, rust version 1.65.0-nightly (f22819bcc 2022-08-12)), linking with `rust-ptx-linker` fails with the following error: ``` | error: linking with `rust-ptx-linker` failed: exit status: 101 | |...

I tried this code: ```rust #![feature(let_else)] const fn foo(a: Option) -> i32 { let Some(a) = a else { return 42 }; a + 1 } fn main() { const...

C-bug
F-let-else

This PR implements `Equivalence` for `MaybeUninit` where `T: Equivalence` by forwarding the impl to `T`. This is useful, for instance, when receiving into the spare capacity of a `Vec`, which...

Experimentation for #253 and #397 * [ ] I've included my change in `CHANGELOG.md`

Just to start tracking all the `Value` related ones - I'll try to tackle them in v0.9 and v0.10: - [x] #357 - [ ] #328 - [ ] #255...

help wanted
feature

Fixes #115 by allowing `ron` maps to be deserialised from structs. This is a hack. I am very unsure if this is something we want `ron` to support with `serde`'s...

Context: I am currently experimenting with using Flang-new 17 to compile the Fortran code in https://github.com/esmf-org/esmf. `flang-new-17 --version`: ```console Ubuntu flang-new version 17.0.0 (++20230624042319+ee2bf319bc05-1~exp1~20230624042420.1017) Target: x86_64-pc-linux-gnu Thread model: posix InstalledDir:...

new issue

I am running WASI code in Wasmtime and the browser and am trying to reuse my WasiCtx implementation for both. While the Wasmtime host can access the guest's memory, which...