kamulos

Results 36 comments of kamulos

+1 At my company we are using `cargo-deny` to ensure that all dependencies fit in the a pre-selected list of allowed licensed. With `rustls` we are intending to pull `ring`...

@MarijnS95 thanks, for clarifying :grin: This makes it basically painless :+1:

> Note that it is easy for this file to get out of sync with the licenses in the source code files. It's recommended to compare the licenses in the...

I have a program, that is using the original chacha20poly130 construction with a 64 bit nonce of the libsodium. It would be great if a compatible implementation was available here,...

I know it is not one of the most widespread curves, but is there any chance, that secp224r1 is supported at some point?

Has the `secp224r1` come any closer with the work? The #218 you mentioned last time seems to be abandoned.

Sounds reasonable :+1: I need the curve for my company's product. Having this without importing one of the few C crypto libraries supporting it would be nice to have, but...

I am also really interested in this. Any chance you could have a look @dtolnay ?

I also forwarded this issue to the libmongoc issue tracker: https://jira.mongodb.org/browse/CDRIVER-4039

This is what just tried to use in the `serialize_with` attribute: ```rust fn date_vec_ser( vec: &[OffsetDateTime], serializer: S, ) -> std::result::Result { let stringvec = vec .iter() .map(|odt| odt.format(&Rfc3339)) .collect::()...