Edward Wang
Edward Wang
As of `futures-0.3`, the conversion only goes one direction from `Stream` to `AsyncRead` through `stream::TryStreamExt::into_async_read` but not the other way around. Is this a conscious decision? If so why? If...
All credits are due to [this SO question](https://stackoverflow.com/questions/57828602/what-is-rusts-borrow-checker-really-complaining-about-here). This code is tried: ```rust fn selection_sort(collection: &mut Vec) { for i in 0..collection.len() { let mut least_element = i; for j...
When `spago run`, if the target cli app manipulates console interface it may not terminate properly
Just use the example from [`purescript-node-readline`](https://github.com/purescript-node/purescript-node-readline/blob/master/test/Main.purs) repo: ```purescript module Main where import Prelude import Effect (Effect) import Effect.Console (log) import Node.EventEmitter (on_) import Node.ReadLine (close, createConsoleInterface, lineH, noCompletion, prompt, setPrompt)...
The package in question is `iterable`. The `spago registry search iterable` reports its existence in the package set, but actually adding the said package to the `spago.yaml` and building the...
Mainly - Migrates FFI to ES modules - Adapt to the new node-readline API Successfully run the example by `pulp run -I example`.