Vitalii Kryvenko

Results 283 comments of Vitalii Kryvenko

@mwilliammyers > Are you talking/thinking about something in addition to a strongly typed query builder as well? Yeah, the query builder part is, in fact, the most complicated one. It...

Totally agree with mwilliammyers, adding at least some basic response types would be very helpful to prevent users [manually writing them :sweat_smile:](https://github.com/Veetaha/vee-news-analyzer/blob/master/crates/vna_es_utils/src/es_types.rs). They [try to do the same thing](https://github.com/elastic/elasticsearch-js/pull/970) at...

@softprops Let's invite @ZaMaZaN4iK to the owners of `dynomite` crate on `crates.io` so we can publish the new version of it (probably using CI with github secrets to do the...

Ping, @softprops, we can't continue improving the crate if we can't make new releases... E.g. this change won't get released: https://github.com/rust-serverless/dynomite/pull/4

@softprops, I would like to volunteer for `dynomite`. We use it in our company extensively and miss some features. I've already submitted a PR to https://github.com/rust-serverless/dynomite/pull/4 for one feature that...

I think the industry standard for specifying ignored paths is using [glob patterns](https://docs.rs/glob/latest/glob/). Also, it is often seen that tools like this that operate on source code even automagically read...

I propose to discuss adding `Option::inspect_some`, `Option::inspect_none`, `Result::inspect_ok`, `Result::inspect_err` methods as described in https://github.com/rust-lang/rfcs/issues/3190#issuecomment-986236562 before stabilizing

@vadimcn, hmm, sorry I am not experienced with that so much. You are right, something like "uncaught panic" or "unhandled panic" would be the better name. I'd imagine we could...

And, to clarify this option should not replace existing onpanic at all, it better be just one more checkbox.

> > Several adaptors say that they should be the outermost in the composition > > Is this true? Reading the docs I only see that `AutoSend` should be the...