Boscop

Results 547 comments of Boscop

Thanks for being so helpful :) I just tried with 0.3.4 and I got the same panic. But looking at `test_data/schema_localmodded.rs` I think I know why: We have this format:...

We need this but without the surrounding `pub mod tenant {` `}` because it will already be piped into a file named `tenant.rs`. But if it outputs this, we can...

Ok, thanks for the explanation. Btw, what's the recommended way to do embed non-monadic code in mdo! {} that uses the previous symbols? Currently I'm doing `let _ = {...}`

Here is an example that contains the `let _ = {}` pattern for non-monadic code: ```rust if let Some(data) = mdo! { places =

> Whaou! That's a heavy use of mdo 😄 Before I was using mdo it was even heavier with lots of map/and_then and deep indentation.. :) > Do you have...

@Eijebong I created a demo repo here: https://github.com/Boscop/ws-rs-issue-260

Btw, the client STILL hangs after the server executable terminated, when it returned `ConnectionRefused` from `on_request`. Only when clients were not caused to hang, they will terminate also when the...

@ffactory-ofcl If you find a better ws crate, let me know. I'm still using ws-rs, because tungstenite doesn't allow reading and writing independently in the non-futures version (`read_message` blocks, and...

Also, when my application is running, it now uses 15% CPU which wasn't the case before either! Before, it was using ~2.4% CPU. So I investigated with the "Very Sleepy"...