Jeremy Rubin
Jeremy Rubin
Would be nice to have a first-class supported method for adding new methods during development. Currently, in order to use non-positional json args you have to name a version which...
The REST API introduces functionality that is redundant with the JSON RPCs, but it's designed to be an unauthenticated connection (but still trusted). This is a vauge security model and...
it would be very handy if schemars could support filepickers instead of strings for Path. input: ```rust #[derive(JsonSchema)] struct SapioCliConfig { sapio_cli: Path, } ``` output: ```json { "$schema": "http://json-schema.org/draft-07/schema#",...
See: https://github.com/rust-bitcoin/bitcoin_hashes/pull/135 Files: [OUT.txt](https://github.com/GREsau/schemars/files/7748087/OUT.txt) [OUT_Tests.txt](https://github.com/GREsau/schemars/files/7748090/OUT_Tests.txt) Essentially the type somehow gets confused and outputs an array when it should pass through to a string. Perhpas a discrepency in handling generic structs...
It would be really helpful if there were a way for a type like: ```rust HashMap ``` to provide docs for K and V neatly. Right now I think the...
One thing which would be useful to add would be an ability to generate some kind of deterministic CSRF cookie. Proper CSRF is a bit of a PITA, but it...
Suggesting that you might relicense this project under MIT or BSD or Public Domain. Many cryptographic libraries are licensed as such (e.g., secp256k1, libsnark, nacl, etc). This makes it easier...
it would be a really useful API to have a powerset + filter api whereby we can express a predicate such that if S is subset of U, and P(S)...
Back in 2016 I had the concept for a Bitcoin Confirmation Sticker which only gets revealed after 6 confirmations. I used a Pokemon sticker pack for this. https://twitter.com/JeremyRubin/status/1415501504316788736 While we...
repro: https://play.rust-lang.org/?version=stable&mode=debug&edition=2021&gist=b18dc13a3c981c6351d3cdd6e24a8715 One quick fix for this would be to override the trait default, cast to signed, and then make sure the coefficients are the positive form after (e.g., by...