Samuel Pilz

Results 30 comments of Samuel Pilz

For me, hindent versions `5.2.4.1` and `5.2.5` produce exactly those results as well

I have tried to analyze this situation. A standalone-binary distribution faces the issue that there are **many runtime dependencies**. Some of them cannot be easily provided by a binary-distribution. Having...

Personally, I like `send_msg` and `perform_cmd`. I agree that they are not too consistent with `stream`. Instead, I suggest changing that to `subscribe` instead. This is an argument of taste....

The wasm-mt library uses web-workers as thread-emulators. "Real" threads (&shared memory) [officially proposed](https://github.com/WebAssembly/threads).

I will draft a PR for this later this week.

Please go ahead with a PR. Unfortunately, the seed-project I was working on has been suspended and brought my interaction with seed to a halt. I have a few comments...

> The path from your `` What is that? It looks interesting

This is indeed unfortunate. I investigated this same issue some time ago: https://users.rust-lang.org/t/unexpected-compilation-error-with-procedural-macros/34310 The problem also appears when adding `use json::parse;` (when `json` is a dependency) instead of applying the...

I thought `serde_json` used `json` internally. This is not the case. ~One of the latest refactorings brought the `json` dependency into the core crate. I will move the only function...

`serde_json` seems to use the same `PartialEq` impls: https://github.com/serde-rs/json/blob/master/src/value/partial_eq.rs adding `use serde_json::from_str;` to your example above produces the same error message