Michal 'vorner' Vaner
Michal 'vorner' Vaner
Hello I don't know if it's possible and not documented or not currently supported, but it would be great if the type fixtures could be parametric not only over values,...
It seems I have a too new cucumber or something. When I run the tests, it fails with a stack trace somewhere deep within cucumber itself. I don't know ruby...
Reading through the cucumber documentation, I glimpsed there should be a way to hook into start/end of a scenario. I didn't find a way to do that as part of...
Hello If I try to compile it with recent nightly (rustc 1.24.0-nightly (5a2465e2b 2017-12-06)) or newest stable, it fails with bunch of these messages: ``` error: code relies on type...
I think it is best explained by a bit of code: ```rust #[macro_use] extern crate serde_derive; extern crate serde; // 1.0.70 extern crate serde_json; // 1.0.24 #[derive(Deserialize, Debug)] #[serde(tag =...
Hello The #373 added possibility to get the IP address out from the response (which is a great help, thanks). Anyway, some errors also can have associated IP address which...
Hello Maybe this is just a paranoia on my side. However, currently if I want to do an audit of my dependencies, I can download and extract the crate source...
Hello The fst can be queried with a specific key or with an automaton. The key is optimized by just „going forward“, while the automaton is „offered“ one byte at...
Hello I've noticed the comment here says than once rust-lang/rust#27745 gets resolved, it's possible to get rid of the private `Any` trait. It seems the issue is closed already 😇
Hello It is possible to have a „stream“ of jsons, not really separated by newlines or prefix-length-encoded or something, like this: ```json {"a":42}{"b":81} ``` I actually have the code around...