summary refs log tree commit diff
path: root/synapse/synapse_rust (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Bump ruff from 0.1.14 to 0.3.2 (#16994)dependabot[bot]2024-03-131-7/+0
|
* Bump black from 23.10.1 to 24.2.0 (#16936)dependabot[bot]2024-03-131-0/+6
|
* Correctly mention previous copyright (#16820)Erik Johnston2024-01-232-0/+2
| | | | | During the migration the automated script to update the copyright headers accidentally got rid of some of the existing copyright lines. Reinstate them.
* Port `EventInternalMetadata` class to Rust (#16782)Erik Johnston2024-01-081-0/+106
| | | | | | | | | | | | | There are a couple of things we need to be careful of here: 1. The current python code does no validation when loading from the DB, so we need to be careful to ignore such errors (at least on jki.re there are some old events with internal metadata fields of the wrong type). 2. We want to be memory efficient, as we often have many hundreds of thousands of events in the cache at a time. --------- Co-authored-by: Quentin Gliech <quenting@element.io>
* Move the rust stubs inline for better IDE integration (#16757)Erik Johnston2023-12-213-0/+100
At least for vscode this allows click through / type checking / syntax highlighting.