Sebastian Messmer
Sebastian Messmer
Can you give some more information? Any error messages, what is the stdout/stderr printed by `cryfs-unmount`? Under the hood, on most systems, `cryfs-unmount` is just calling `fusermount`.
ok this is weird, the macos CI jobs here fail and say they can't find OpenMP. However, my change is written in a way that it shouldn't be able to...
It worked in the legacy cmake repository, and that's actually where I got the working cmake code from, but it probably never worked here. It probably does work on other...
No idea why ci fails. Asked for access in the access task because i thought that would allow me to read the CI logs, but even though I saw a...
Oh nvm, it's because I had enabled the `parallel` feature which doesn't seem to work on WASM. Removing that feature made it work. Not closing the issue just yet because...
This blocks things like writing a chumsky-to-nom adapter. I wanted to write such an adapter to gradually convert a project from nom to chumsky, but because some parsers report incorrect...
`repeated` with zero occurrences is also affected; ```rust let parser = chumsky::primitive::just::('a') .repeated() .map_with_span(|_, span| span); let span = parser.parse("b"); assert_eq!(span, Ok(0..0)); ``` ``` assertion `left == right` failed left:...
If 0.9 is not supported anymore, won't get a fix and this is fixed in 1.0, can you release a stable non-alpha 1.0 version on crates.io?
Because the local integrity data isn't synced between clients. And we want to allow other clients using the same file system to make authenticated changes and **increase** the version number...
Bevy unfortunately has APIs that allow the user to modify the entities a relationship points to, breaking encapsulation of the relationship struct. `EntityCommands::with_related` is one of them - it spawns...