-
So I have pulled this out from referencing the below files, but I don't know enough about the project internals to tell whether this is the simplest and most-minimal implementation.
https://github.…
-
libolm has been deprecated and the content scanner uses it through python-olm.
We're not aware of any active security problem with using it, but it seems wise to think about this.
The content sc…
-
## 💡 Feature description
One of the key use cases for WebAssembly is audio processing. wasm-pack doesn't currently support AudioWorklets (purportedly the future of custom audio processing on the web)…
Smona updated
2 months ago
-
Instead of `Input::singleton().is_key_pressed()` you should just be able to write `Input::is_key_pressed()`. It's shorter, closer to GDScript, more Rusty, and avoids the overloaded word "singleton" wh…
-
Storing events seems like it'll be simpler than querying, so let's start brainstorming how writing new events might work! Based on @fluffyemily's explorations in https://github.com/fluffyemily/cross-p…
ghost updated
7 years ago
-
Tracks stabilization for the `Fn*` traits.
Random bugs:
- [x] https://github.com/rust-lang/rust/issues/45510 – type-based dispatch not working
- [ ] https://github.com/rust-lang/rust/issues/427…
-
There should be a way to use imprecise floating point operations like GCC's and Clang's `-ffast-math`. The simplest way to do this would be to do like GCC and Clang and implement a command line flag, …
mpdn updated
5 months ago
-
This is a tracking issue for the RFC "`try_trait_v2`: A new design for the `?` desugaring" (rust-lang/rfcs#3058).
The feature gate for the issue is `#![feature(try_trait_v2)]`.
This obviates h…
-
Currently, cargo execute scrips before the build starts with the `build` field. I propose renaming `build` to `pre_build` and adding `post_build` (which would run after every successful build). It's u…
vosen updated
3 months ago
-
[`PyEval_SetProfile`](https://docs.python.org/3/c-api/init.html#c.PyEval_SetProfile) is the C-api equivalent to [`sys.set_profile`](https://docs.python.org/3/library/sys.html#sys.setprofile). Using `P…