Tony Arcieri
Tony Arcieri
Copying and pasting my comment from #655. See also: #645. Build failure: https://github.com/rustsec/rustsec/runs/8025899590?check_suite_focus=true#step:7:117 I'm a bit confused in that it's only failing on macOS (and only on Rust 1.57; it...
It would be neat if this crate worked with `#![no_std]`. The main thing it's using seems to be `Box`, which could use `collections` in a `no_std` context. If there's interest...
With the simplified cryptographic scheme (#73) of Biscuit 2.0 (#72), it becomes possible to support other cryptographic algorithms. I would like to make a suggestion to support ECDSA in conjunction...
[Section 5.6 of RFC 3339](https://tools.ietf.org/html/rfc3339.html#section-5.6) describes `time-secfrac` as the syntax for partial seconds in RFC 3339 timestamps: ``` time-secfrac = "." 1*DIGIT ``` This syntax indicates one or more digits....
CBOR describes a mapping for converting to/from JSON (see [RFC7049 section 4](https://tools.ietf.org/html/rfc7049#page-29)). From what I can tell, a conversion of a CBOR document to JSON and back to CBOR would...
This test suite (mentioned in the "[Parsing JSON is a Minefield](http://seriot.ch/parsing_json.html)" blog post) contains a number of examples which have ambiguous behavior and/or cause JSON parser crashes: https://github.com/nst/JSONTestSuite TJSON can...
Support a syntax for redacting content from documents while allowing their corresponding [objecthashes](https://github.com/benlaurie/objecthash) to remain the same. This would likely take the form `"r:"`. Data to be redacted should always...
`ConstantTimeSelect` is intended as a replacement to `ConditionallySelectable`, which is preserved but deprecated. It replaces the previous `Copy` bound with a bound on a new `ConstantTimeClone` marker trait, which allows...