Patrick Hayes

Results 60 comments of Patrick Hayes

Thanks @jaemk , OK if I open a PR to copy that list of properties to the main README. I looked but didn't find it, and I bet it's true...

Thanks @aleksuss, I appreciate you putting in the effort to maintain this project. I recently adopted exonum as the backend for my CryptoBallot project (https://github.com/cryptoballot/cryptoballot), and it fit my needs...

I'm not sure if you'd like to highlight closed-source projects, but if you do, feel free to highlight our project that uses Rocket: https://neurovisualtrainer.com/ Feel free to use our logo...

Hi @newpavlov , I don't think that's the case here. The [fuzzing target](https://github.com/phayes/sidefuzz-targets/blob/master/rsa_encrypt_message/src/lib.rs) is directly testing this function: ``` /// Raw RSA encryption of m with the public key. No...

To the @stripe team, I'm an occasional contributor to the unofficial stripe rust implementation. I'm available on a contract-basis starting in September if you'd like additional outside help on this.

Hi there! Digging into this a bit more, and looking at the spec (https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.2.md#data-types), it appears that any implementation that interprets `integer` as unsigned is in error. From the spec:...

Another way it could work is similar to the way a git merge or go-tests work, with "inline buttons" (not sure what the proper name of this feature is). Here's...

Hi everyone, Regrettably we made a decision not to pursue using the stripe checkout-session API, so I won't have time allotted to do any more work on this. The current...

I think the solution probably looks something like this: 1. Add `params` field to List ```rust #[derive(Debug, Deserialize, Serialize)] pub struct List { pub data: Vec, pub has_more: bool, pub...

This is partially fixed in #194 . ~~It still needs to be solved for async. ~~ Async fix now in the PR as well.