Adam Chalmers

Results 47 comments of Adam Chalmers

@ripienaar The maintainer hasn't replied to this bug since it was first filed in July. I've switched over to the form3 fork, but I've been unable to persuade my project's...

I understand, but I've reached out to him on email and twitter a few weeks ago.

I'll ask my work if we could maintain a fork. I notice that Google, Apache and Microsoft are on the [list of who imports this](https://pkg.go.dev/github.com/dgrijalva/jwt-go?tab=importedby), I wonder if they'd be...

OK, this is confusing, but I think MetadataValue actually does impl From for all the numeric types, [using the same from_integers!](https://github.com/hyperium/tonic/blob/4b0ece6d2854af088fbc1bdb55c2cdd19ec9bb92/tonic/src/metadata/value.rs#L471) macro impls that the http crate does. This expands...

Hi! I think making an example of global registries would be a great solution. I'd love to switch over to this library but I'm a bit reluctant to sit down...

I actually think this is a non-issue. You don't need a global registry, you need global _metrics_. Your individual metrics can be global, and accessible by both your registry and...

Great idea. I always use https://crontab.guru to double-check my crons, something like that for Saffron would be really helpful.

I agree. JSON is a sensible default, but if an API specifically tells us to parse something as plain-text or octet-stream, we should skip the JSON deserialization and just return...

BTW you can send a string body by just defining an `Endpoint` struct where `BodyType = String`.

Adrian: thank you so much for this PR! I really like your design for general-purpose validation. My current thought is: I think flexibility of validation is more important than serializing...