Florian Wickert
Florian Wickert
I'm having the same problem. I only use Photoview for viewing photos/videos. Everything (photos and videos) are tagged, sorted and encoded before Photoview gets to see them so I disabled...
Doesn't the tmpfs workaround hurt caching a lot? Cargo has to download and build everything every time if CARGO_HOME is not stored on the filesystem.
Since cargo (stable) now supports the sparse registry protocol, the easiest workaround is to set the envinronment variable `CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse`. This avoids the problematic call to libgit2 altogether. You have to...
@robclancy This is also true for other (bigger) problems in Seafile. If you are still using it, you might want to consider switching to something else. There are concerns that...
The `tracing` crate and `tracing-journald` seem to support that.
@antedebaas Can you give an example on how you would like to split the config into multiple files? It doesn't need to have correct syntax or anything but just show...
The httpd include-style does not work well for TOML files but there's still the option to specify a directory instead of a single TOML file and loading all files from...
The way serde works makes it a bit difficult to parse multiple files at the same time. Parsing them one after another requires some parts of the validation that serde...
This error looks like there are build tools missing. If you're using Ubuntu or something similar please try this: ```sh sudo apt update sudo apt install build-essential ``` The docker...
> Doesn't rust have something like static build where it compiles all it needs into the resulting binary? Yes and no. The rust "parts" of the binary are statically linked....