seed icon indicating copy to clipboard operation
seed copied to clipboard

A Rust framework for creating web apps

Results 75 seed issues
Sort by recently updated
recently updated
newest added

This reverts commit 08c4ce15255ac8d03df5315796e7b63e624e2987. The fields are considered as unused by `rustc`, however they might be stored to be dropped in the right moment. In the future we should analyze...

Commit 08c4ce15255ac8d03df5315796e7b63e624e2987 introduced some bug: ``` Uncaught Error: closure invoked recursively or destroyed already at imports.wbg.__wbindgen_throw at wasm_bindgen::throw_str::ha13545fa78d0389b at ::describe::invoke::he801481bf9a481f4 at __wbg_adapter_42 at WebSocket.real ``` I suppose, one of the...

bug

# Before the release - [x] 1. Create a new issue - [x] 2. Update all official examples. - [x] 3. Review the commit and PR history since last release....

Seed 0.8 extended `Closure` with `new` method via a trait, because this method was missing in `wasm-bindgen < 0.2.81`. `wasm-bindgen 0.2.81` introduced `Closure::new`. Thus `Closure::new` changed meaning from `::new()` to...

It was a pleasure for me to be working on the release of `v0.9.0` :smile: And I would have great desire to develop Seed further, however, it is unfortunately as...

help wanted
high priority

### Versions I can reproduce this bug in Seed 0.9 I cannot reproduce this bug in Seed 0.8 ### In short: 1. In `view` we return something like `div![el_ref(&some_elref), div!["Some...

bug

## JS Framework Benchmark The current de facto standard benchmark for measuring the performance of front end apps seems to be https://github.com/krausest/js-framework-benchmark. This is a fairly straightforward benchmark covering a...

I am using seed-rs for a simple SPA, but now need to interact with another wasm file which could be either a simple lib with a function or a more...

question

Redirect `println!` and similar functions to `console.log`. Motivation: - We can use standard Rust functions for logging / debugging. - It will be easier for beginners to learn and play...

enhancement

Hi, I discovered that when I was deserializing larger numbers in json payloads retrieved using `fetch`, there were off. If they are too large, deserialization completely fails with something like...