Vagelis Prokopiou

Results 11 comments of Vagelis Prokopiou

I don't know if this suggestion will help you, but an alternate solution would be to create your own dump, if no one can provide one. A simple script would...

Would be happy to help but creating such a dump is not feasible for me due to insufficient hard drive space :-)

+1 from me. I tried to create a server both by trying to port the example server from the repo to an actual bin project and by trying to reproduce...

I managed to make the docs example server run. The problems were crate versions related. I managed to make it run with the following crate versions: ``` [dependencies] hyper =...

I subscribe to this too. Setting up a Hyper server with TLS, is quite unclear. Some dedicated Hyper TLS documentation is necessary in my opinion. Some documentation exists in third...

Hi guys. Some more space agencies that you might want to contact some time: https://www.roscosmos.ru/ https://global.jaxa.jp/ https://www.esa.int/ https://www.asc-csa.gc.ca/eng/default.asp

Hi @CosmicHorrorDev. Yes. Still reproducible (sd 0.7.6). As I said, this is reproducible on Windows, through Git Bash. The following do not work. ``` echo -n 'Hi' | sd ''...

I have an intuition that it may be related to the `/` character. This character has also given me problems with other tools too (see https://github.com/BurntSushi/ripgrep/issues/1973). The questions though is,...

This is how I do it currently (with warp version 0.3.0): ```rust let routes = warp::any() .and(warp::method()) .and(warp::path::full()) .and( // Optional query string. See https://github.com/seanmonstar/warp/issues/86 warp::filters::query::raw() .or(warp::any().map(|| String::default())) .unify() )...

Hi Sean. I saw the "[Connectors, Pools, and HTTPS](https://hyper.rs/guides/1/client/connectors/)" section that you added to the Hyper/Client docs within the #1025 issue context. Good addition to the structure of the docs....