Sean Pianka

Results 49 comments of Sean Pianka

I was planning to deploy an AWS Lambda function which would serve an actix_web application, but purely for a REST API which returns JSON. I do not need to serve...

I am struggling with limitation this in a similar scenario: ```rust trait Jwt { const AUDIENCE: &'static str; } impl Jwt for () { const AUDIENCE: &'static str = Audience::Access.into();...

Perhaps just `Discriminants`? But yes please keep this 👍

Hey there, I appreciate the fast response. I'll work around this by making the input parameters 'static, thanks for the guidance! There's no particular rush from me to support this...

I suppose the underlying issue here is not that the expand params need to be dynamic, it is that the field of `params` ends with a `'static` lifetime bound in...

Thanks for the quick reply! This is my first open-source project that I've collaborated on, and I'm enjoying my experience so far 🙂 👍 > Two thoughts: 1) `Match` is...

I can understand your concern with readability of the process module, so I'm willing to separate out the type definitions from the implementation. However, I still don't see what's particularly...

Hi @logannc, just wanted to know if you had updates or any thoughts on the changes discussed above with returning `MatchingSequence` or `QueryScore`. This would change the public API, but...

@logannc Right, we'll have to see how to rebase the mega-change PR now. Thanks for the review. Do you have an opinion on the name `Score` versus `QueryScore`? Or an...