Niklas Long
Niklas Long
I've been using [conventional commits](https://www.conventionalcommits.org/en/v1.0.0-beta.2/) on other projects and have been enjoying the benefits, opening this to gauge interest.
The goal is to implement a wrapper for the Matrix client-server API. This wrapper will consist of: - a `Request` module which returns a struct containing the data necessary for...
Currently the function docs for the `Request` module don't link to the corresponding endpoints in the [client-server](https://matrix.org/docs/spec/client_server/r0.6.1) docs. Suggestions in how to better organise documentation are welcome, my current thinking...
Next step from #38. The first pre-release of [olm](https://github.com/niklaslong/olm-elixir) is on hex. Changes to the API are likely but this issue has been opened to discuss how to implement encryption...
The crate is unmaintained and currently carries two security vulnerabilities: - [RUSTSEC-2020-0159](https://rustsec.org/advisories/RUSTSEC-2020-0159) - [RUSTSEC-2020-0071](https://rustsec.org/advisories/RUSTSEC-2020-0071) Having skimmed the code, it should be easy to replace `chrono::DateTime` with e.g. `time::OffsetDateTime`. There might...
These collections never held the lock over an `await` point making it possible to switch to more performant `parking_lot` variants. I'm currently testing this change, hence the draft.
As illustrated by #1685, our CI can currently miss breakage in feature-gated logic. We should be testing the succesful compilation under all feature flags on CI. We could use [`cargo...
This has been discussed previously but never tracked as an issue. SnarkOS currently doesn't cap data transmission, which could be a concern as the node can be easily flooded. I'd...
It would be useful to have the network components modularised and extracted into a separate crate (as has already been partially done). This would principally include message types and their...
Just a quick fly-by noticed the other day (also changed pea2pea). PR builds on #2106, which should be merged first; only the last commit is new.