Ivan Enderlin
Ivan Enderlin
We have a non-neligeable tech debt about `matrix_sdk::sliding_sync::SlidingSyncRoom`. It holds data that are not shared with the `matrix_sdk::Room`. Ideally, we want `SlidingSyncRoom` to _not_ exist. The idea is to clean...
This PR is a work-in-progress. The idea is to provide client-side sorting for the rooms. --- Blocked by: * https://github.com/jplatte/eyeball/pull/43 * https://github.com/matrix-org/matrix-rust-sdk/issues/3079
This patch removes `FrozenSlidingSyncRoom::timeline`, which means we no longer cache on-disk the latest events (up to 10). This feature will be back in a cleaner way with `matrix_sdk_ui::event_graph`. Because `FrozenSlidingSyncRoom::timeline`...
This patch is only based on https://github.com/matrix-org/sliding-sync/pull/304 since the specification wasn't updated. I'm basically guessing what a request and a response _should_ look like: * `RoomSubscription` gains a new field:...
Hey! Let's assume this test: ```rust #[test] fn foobar() { let original = r##"https://foo.bar/_/A and https://baz.qux/_/B"##; let expected = r##"https://foo.bar/_/A and https://baz.qux/_/B"##; test_markdown_html(original, expected, false, false, false); } ``` This...
`wasm_name_new` is an alias to `wasm_byte_vec_new`, which owns the `ptr_or_none` argument, which is in this case `s`. This patch adds the `own` market to `wasm_name_new_from_string` and `wasm_name_new_from_string_nt`.
Hello dear all, For the moment, it is assumed that the project does not provide any documentation. When will it be time to write documentation, and did you already think...
Hello, I think it's safe to assume this crate can be archived now. Wasm bindings have taken another path, and WebIDL is no longer the language used to define the...
For more context, see https://github.com/wasmerio/wasmer/pull/2199#discussion_r598817829. The idea is: rather than adding `#[loupe(skip)]` for all attributes, we can annotate the entire type with `#[loupe(skip_all)]`, which will be exactly the same.
New featuure. Add ability to count the number of instances of a given type `T` (with the peak), so that it guides us when trying to optimise type size.