Nico Orrù
Nico Orrù
Hi, I just found your cool cargo extension. I want to use it to package distinct distribution files for Windows and Linux. What is the recommended mechanism to achieve this?
Hi, I have added a bunch of bindings for Optical Flow and a bug fix, as I needed them in for a project. Feel free to integrate, I can't dedicate...
I am unable to rename a `struct` and I get this in my RLS log: ``` LSP4E to org.eclipse.corrosion.rls:{"jsonrpc":"2.0","id":"727","method":"textDocument/rename","params":{"textDocument":{"uri":"file:///home/nico/Projects/itadinanta/ofx-rs/ofx/src/handle.rs"},"position":{"line":40,"character":18},"newName":"ImageEffectHandle"}} org.eclipse.corrosion.rls to LSP4E:{"jsonrpc":"2.0","method":"window/showMessage","params":{"message":"Rename failed: RLS found nothing to rename - possibly...
I am trying to rename a structure called `CameraConfiguration` into `CameraConfig` in Corrosion, got the following error: ``` {"jsonrpc":"2.0","id":"274","method":"textDocument/rename","params":{"textDocument":{"uri":"file:///home/norru/Projects/ivt/parallax_testbed/src/render/view.rs"},"position":{"line":44,"character":28},"newName":"CameraConfig"}} org.eclipse.corrosion.rls to LSP4E:{"jsonrpc":"2.0","method":"window/showMessage","params":{"message":"Rename failed: no information for symbol","type":2}} org.eclipse.corrosion.rls to LSP4E:{"jsonrpc":"2.0","id":"274","result":{}}...
This is a regression from `rls 1.34.0 (0d6f53e 2019-02-14)` - normal `cargo build` works fine - older versions of `rls` do not have the problem How to repro from https://github.com/itadinanta/ofx-rs/tree/tags/rls_1409_cant_find_crate...
Hi, I'm running latest snapshot of Eclipse 2018-09, tm4e, lsp4e and corrosion to test progress (a life on the edge, I know!). After an "upgrade all", the code folding feature,...
Hi, I managed to implement a possible solution at https://github.com/xerial/sbt-pack/issues/89. The following setting implements the desired behaviour ``` scala packArchivePosixMask := posixMaskFromFilesystem ``` The following setting implements the default behaviour...
Hello, our current deployment policy dictates that: - the application executable must be in the root of the archive rather than in the `/bin` directory - none of the unpacked...
Hi, I need to build on Windows 10 with the `nightly-x86_64-pc-windows-gnu` toolchain. All libs are installed via MSYS2's `pacman`, lncluding `hdf5`. HDF5 headers are in `/mingw64/include`; libs are in `/mingw64/lib`...
Hello, stream.close() for non blocking streams occasionally hangs. I have only seen it happen when the code is not optimized, usually after many buffer xrun. Haven't seen happening in ```--release```...