Tomasz Andrzejak
Tomasz Andrzejak
Would you be willing to pull the patch that adds support for tuples? It looks like the code is good to go and it is only a matter of adding...
I'm currently working on wrapping `hrtf` crate in the GStreamer plugin. I was wondering if you could help me to clarify some of the API constraints? Those are the questions:...
## Bug Report ### Version master ### Platform Linux pop-os 6.0.6-76060006-generic x86_64 ### Description Running `tls_rustls` example results in panic on the server side: server: `cargo run --bin tls-server-rustls` client:...
### Checklist * [x] I have read the [Contributor Guide](../CONTRIBUTING.md) * [x] I have read and agree to the [Code of Conduct](../CODE_OF_CONDUCT.md) * [x] I have added a description of...
What it says on the tin. Closes: https://github.com/dtolnay/cxx/issues/1317
This patch implements `AbortController` and `AbortSignal` as specified in the [DOM spec](https://dom.spec.whatwg.org/#abortcontroller). `AbortSignal` is connected to fetch requests and can be used to cancel them. For example, the following code...
This patch splits documentation into multiple markdown files and deploys `mdbook` to github pages. There are also new sections like developing builtins in c++. The rendered mdbook can be found...
This enables clang based linting over c++ codebase. There are two new targets: - `just lint` - runs clang-tidy on the codebase - `just lint-fix` - runs clang-tidy with `-fix`...
This patch sets the stage for incoming `AbortController` and `AbortSignal`: - implements `Event` interface: https://dom.spec.whatwg.org/#interface-event, - implements `CustomEvent` interface: https://dom.spec.whatwg.org/#interface-customevent, - implement `EventTarget` interface: https://dom.spec.whatwg.org/#interface-eventtarget, - adds a global `EventTarget`...