Mike Harris
Mike Harris
I've partially worked around this by making my tests integration tests instead of unit tests (arguably they should have been integration tests from the start). This means the "test" cxx...
I got it to dump it's entire environment, and the only `CARGO_CFG_xxx` variables there were the ones listed on that page, relating to the target. There was no `CARGO_CFG_TEST`.
For some reason, 3GPP don't seem to publish the ASN1 files as plain text files you can download, rather they include them embedded in the specifications (word docs). You need...
In case anyone else comes across this, and is using Centos 6, you can resolve it by installing devtoolset-7 from scl, like this: yum install centos-release-scl yum install devtoolset-7 then...
The sample above does compile if I make that change, but it is not very ergonomic: in my real program I am using the equivalent of `FuncType` in a lot...
Here is a simple quick & dirty example: ```rust use std::net::TcpStream; use async_io::Async; use async_std::task; use async_std::net::ToSocketAddrs; use async_std::io::ReadExt; use async_ssh2::Session; fn main() { task::block_on(async { // Connect to the...
Thanks for the reply. I have a fork over [here](https://github.com/harmic/async-ssh2) where I have been trying to update the dependencies - see branch async-io. I am a few commits behind you....
I've done quite a bit of work on this over the last week or so, and resolved many of the issues: - Refactor to depend only on async-io, which reduces...
Hello @spebern Any chance to review my PR #29 ? If you don't have the time right now - would you perhaps consider adding me as a co-maintainer of this...
Hi, Thanks for that! It's the same as my github account - harmic. Cheers Mike On Sun, 6 Jun 2021 at 19:44, bold ***@***.***> wrote: > Hi, > > I...