Vyacheslav Kim (Kane)

Results 11 issues of Vyacheslav Kim (Kane)

I want to use gen on structures defined by protobuf. But protobuf files are themselves generated and it is not recommended to edit them. Is there any way to get...

Creating multiple servers doesn't increase performance, actually it makes it even worse. Single server is ~3.5 times slower than go's server implementation. Multiple servers (I did 8 per number of...

https://github.com/hyperium/mime/blob/2e0268e6dc2933db308e452787c4ca85bc63bd6e/mime-parse/src/rfc7231.rs#L400 ``` let mime = parse("text/plain; charset=\"utf-8\"").unwrap(); ``` Parsing quoted parameters directly contradicts with RFC 2045: ``` Note that the value of a quoted string parameter does not include the...

It seems by default it runs on single thread, is there any way to use multiple threads? I've tried to run it with: ``` let env = Arc::new(EnvBuilder::new().build()); ``` And...

We want to use circuit breaker instance in our healthcheck reporting. Would be nice if cb instance was able to report which errors triggered it to fail. If that's something...

Version of VSCode: 1.16.1 Version of the extension: 0.4.2 OS: Mac Os Description: Go to definition doesn't work in files inside crate. example: ``` extern crate chrono; extern crate time;...

It would be more ergonomic if checkout always returned value (as that's what will be done anyway when it currently returns None). When value is returned to the pool, capacity...

Delta format allows embeds in form of the map: ``` insert: {blotname: {attr: value}} ``` This PR adds support for it.