luveti

Results 12 issues of luveti

Is this possible? I'm looking to replace lapis.validate with this but there doesn't appear to be a equivalent to the `{ keys = true }` option that validate takes in...

This is an example from the documentation, with a snippet from daurnimator's lua-http library, and is the minimal code needed to reproduce the issue I'm seeing in my application. ```lua...

I've wrote a GTK4 application (using https://gtk-rs.org) and was testing it in my compositor. I noticed when I close this application, several X11 windows would be left behind. The GTK4...

### Motivation WeakRef is now supported by all mainstream browsers: https://caniuse.com/mdn-javascript_builtins_weakref ### Proposed Solution Remove `WASM_BINDGEN_WEAKREF` and set the [default value](https://github.com/rustwasm/wasm-bindgen/blob/main/crates/cli-support/src/lib.rs#L109) to true. ### Alternatives Leak memory forever.. :) ###...

breaking-change
enhancement

My team is looking to implement this into our vue-loader based app and I'm having trouble getting it to work. Do you have any tips on how to get this...

It appears these [layers samples](https://immersive-web.github.io/webxr-samples/layers-samples/) don't work unless this [polyfill](https://github.com/immersive-web/webxr-layers-polyfill) is used.

```rust use dioxus::prelude::*; pub fn main() { launch(app) } pub fn app() -> Element { let mut num = use_server_future(get_next_number); rsx! { div { // This does work // onclick:...

bug
core

Given the following example: ```html const engine = Matter.Engine.create() const circle = Matter.Bodies.circle(20, 300, 10) Matter.Composite.add(engine.world, [ circle, Matter.Bodies.rectangle(400, 5, 800, 10, { isStatic: true }), Matter.Bodies.rectangle(400, 600 - 5,...

## Feature Request Having a per platform dist directory allows one to run `dx serve` multiple times without the build failing. We're currently patching `Dioxus.toml` right before running `dx serve`...

bug
cli