Michael Bryant
Michael Bryant
Resolved in #144
Did a search on this, found [this pdf](https://webdevolutions.blob.core.windows.net/blog/pdf/insider-series-using-rust-code-in-a-cc-project-with-cmake.pdf), which links to [this CMake module](https://github.com/Devolutions/CMakeRust).
It's a difference of which libc they use/link to. Most Linux distributions use GNU libc (`glibc`) while I can think of two that offer musl libc. Glibc requires dynamic linking...
I'm having my own issue related to this one, where I have a custom error type with associated data that I want to impl `Reply` and `Reject` on (to easily...
Going off of what @eknath-iyer said, couldn't you do a simple `typeof item` check and add quotes if `typeof item === "string"` and/or not if `typeof item === "number"`?
I'm working on setting up my own instance on an Arch server. Gonna test it out a bit and, if I can, put together a PKGBUILD. If someone else gets...
Did you add a custom struct that derives `Diagnostic`, as in the example snippet? That's where the error occurs, in the docs for the `Diagnostic` trait implementation on `MyDiagnostic`. Am...
I'm able to reproduce with the snippet you mentioned, after changing `struct MyDiagnostic` to `pub struct Diagnostic` so that docs are generate for it. Alternatively: ``` cargo deadlinks --check-intra-doc-links --...
Looks like the readthedocs job is preventing this PR from being merged? It's saying the `.readthedocs.yaml` file can't be found in the repository, which I don't see on `main` either....
I'd suggest changing the phrasing to "unmaintained" or "barely maintained", as "deprecated" to me means there is a better replacement available.