silvanshade

Results 18 issues of silvanshade

This PR exposes the `ts_tree_cursor_copy` for the web bindings. However, I noticed something strange in how it behaves when I attempted to add an example of using it to the...

The LSP server `Document` type should be modified to use `Rope` (from [ropey](https://crates.io/crates/ropey)) for text storage rather than `String`. It looks like with the way things are currently set up,...

C-enhancement
T-LSP

@ebkalderon This PR refactors the `Server::serve` function into multiple variants, one of which allows for passing a `I: Stream` and `O: Sink` rather than just `I: AsyncRead` and `O: AsyncWrite`....

It would be nice to be able to support [progress notifications](https://microsoft.github.io/language-server-protocol/specifications/specification-current/#progress). I haven't looked into what sort of modifications would be needed for this but it seems like it should...

enhancement

Support for canceling server requests (from the client to the server) was implemented when #145 was resolved. However, the LSP spec for [`$/cancelRequest`](https://microsoft.github.io/language-server-protocol/specification#cancelRequest) allows for server request (from the server...

enhancement

This PR adds support for using `VAES` intrinsics for the `ni` backend for the `aes` 8-fold operations. The change shows a nice speed up on Zen4 CPUs at least. Benchmarks...

Continued from https://github.com/RustCrypto/block-ciphers/pull/397. This PR implements AES for riscv64 using the scalar and vector crypto extensions. The scalar implementation is complete, sans hazmat support. The vector implementation is complete, sans...

This PR implements an AES backend for ARMv9 using the SVE2-AES feature. The overall design is similar to [RVV implementation](https://github.com/RustCrypto/block-ciphers/pull/399) since they are both VLA-style. Most of the comments I...

This is a list of frameworks I've been working through in the translation PRs. This is basically just what shows up on the Apple website under system frameworks, technologies page,...

enhancement
A-framework