Andrew Dirksen
Andrew Dirksen
I'm talking about `lsp-rust` with `rust-analyzer` but this may be applicable to other language servers too. Currently, some of `rust-analyzer`s initialization options are settable through variables like [lsp-rust-analyzer-experimental-proc-attr-macros](https://github.com/emacs-lsp/lsp-mode/blob/d1178661020d0c1710963dcefe02fa5bf2f91bad/clients/lsp-rust.el#L673). Those variables...
Given the following, it's possible to jump to the definition of `PhantomData` assuming the `rust-src` component is installed. ```rust use std::marker::PhantomData; ``` However, when using core instead of std, jump-to-definition...
### Version ``` cortex version cli version: 0.42.0 ``` ### Description `cortex up` fails with "timeout has occurred when validating your cortex cluster". This happens consistently. The failure only occurs...
Cargo doc currently emits tons of warnings when run on this codebase. ```bash cargo clean --doc && cargo doc ``` ``` ... warning: could not parse code block as Rust...
Input: ```rust use c; // use c; use b; // use b; use a; // use a; ``` Expected: ```rust use a; // use a; use b; // use b;...
The [docs](https://github.com/cogciprocate/ocl/blob/03086863e95e43033ae67f1530801cb57032e1a3/ocl/src/lib.rs#L10) have a call to action regarding documentation. Much appreciated here's my report: Regarging the docs on [use_host_slice](https://github.com/cogciprocate/ocl/blob/03086863e95e43033ae67f1530801cb57032e1a3/ocl/src/standard/buffer.rs#L2246). As someone who is new to opencl, I'm having trouble understanding...
Calling MolToSmiles on the same molecule concurrently from multiple threads can result in undefined behavior. For me, that ub usually manifests as a process exit with `signal: 6, SIGABRT` but...
Setting `AWS_PROFILE` usually means "I want to use this profile to run commands." `aws-google-auth` interprets is as "I want to overwrite the credentials for this profile." I've been bitten by...
Here is the current [type signature for load_graph](https://github.com/oxigraph/oxigraph/blob/dd040a883188350873df0c1697cd0543d3e13a35/lib/src/store/memory.rs#L330) in `MemoryStore`. It is mirrored in `RocksDbStore` and `SledStore`. The type signature for `load_dataset` is similar. Please consider this API as it...
It's generally a bad idea to include panics in a public function unless those panics are documented. https://github.com/rustsim/ncollide/blob/3fd441c024f0057fd3742e3cb911f4716b230892/src/transformation/convex_hull3.rs#L26-L31 The function panics when length of input is zero. Possible solutions: 1....