Lukas Lihotzki

Results 27 issues of Lukas Lihotzki

[As documented](https://docs.rs/futures/0.3.21/futures/future/fn.select_all.html#panics), select_all asserts that the iterator is non-empty. When [this assertion](https://docs.rs/futures-util/0.3.21/src/futures_util/future/select_all.rs.html#40) is removed, the empty SelectAll is always pending. This behavior is more convenient in some cases, like when...

This example runs an oscillator in WASM inside an audio worklet. Volume and frequency is controllable in the UI exposed by the main thread. A design goal was to abstract...

### Motivation Rust crates should be able to abstract worker and worklet handling without requiring extra effort by the application developer. For worker and worklet creation, a URL pointing to...

enhancement

A 3D LUT can be used to describe the palette for indexed formats. This is not ideal, but probably more helpful for users who want to display indexed formats than...

[Rendered](https://github.com/Famedly/matrix-doc/blob/opportunistic-direct-push/proposals/3361-opportunistic-direct-push.md)

push
proposal
kind:feature

Currently, the webaudio backend internally uses AudioBuffers chained together by AudioBufferSourceNodes' onended. These buffers need to be maintained regularly by the backend. Web Audio has another type of node that...

After Google login, mautrix-hangouts created Matrix rooms (without messages). After mautrix-hangouts restart, it started to backfill messages, except my own, although the puppet of my Google account joined (and left...

Like imported modules, linked modules can be added by any crate with the `wasm_bindgen::link_to!` macro and the existing `module`, `raw_module` or `inline_js` attributes. In contrast to imported modules, no imports...

The `ast::ImportModule` is only depends on `BindgenAttrs`, not on `syn::ItemForeignMod`, so the function can be factored out. (Also, simplify the check for other ABIs.)