Maxim Zhiburt
Maxim Zhiburt
Even though it was tested on Windows and OSX. Running a test suite may help to spot some issues. For example on my machine on widows it passes all tests....
I think for people who don't uses Regex, it could be good to not include it as a dependency to decrease a crate size. ```toml [features] default = ["regex"] regex...
It requires an investigation if this is valuable at first. But the idea can be found in pexpect. https://pexpect.readthedocs.io/en/stable/api/pxssh.html
The issue is we can't `Send+Clone` `&mut Self` for `future` which will be spawned in handler. We need to use some kind of `mutex` but we can't use the one...
My guess for some reason when we do an expect of initial prompt something is changed so type ENTER causes a production of CTRL-M(^M) where without it it causes \r\n
https://github.com/smol-rs/futures-lite/issues/47 It seems like read_line can write only in an empty buffer. So the behavior is differs from std::io::BufRead
Hey Eliot you prolong creating nice stuff. Personally I am pleased to see this repository. Thanks for that. So what about problem. I believe that if we cannot find type,...