Results 210 comments of daxpedda

I have encountered this issue while cross-compiling between Intel and Apple Silicon MacOS, I fixed it by simply applying `CMAKE_OSX_ARCHITECTURES`.

> Is there a rust bug associated with this? https://github.com/rust-lang/rust/issues/52393

Thanks for the explanation, will do.

Would like to tackle this if possible. Imo we should use [rustls](https://crates.io/crates/rustls) if we intend to use TLS. Is there any kind of agreement on this yet?

TLS is only using asymmetric encryption for key exchange or key agreement, cyphers used by TLS are using symmetric encryption. Without an asymmetrical key exchange, there is no way to...

UDP already has checksum computation integrated: https://en.wikipedia.org/wiki/User_Datagram_Protocol#Packet_structure, https://tools.ietf.org/html/rfc768 I think there are only two other things to discuss here: - UDP checksum on IPv4 is not mandatory, but as far...

The docs on `docs.rs` aren't building for `0.5.0`. EDIT: Probably related to https://github.com/rust-lang/docs.rs/issues/503.

@soc friendly ping. Currently `directories` offers no way to get a non-syncing config directory. > Usually I'd require that the function provides behavior that is present on at least one...

This is amazing to hear! I've already done some preliminary work here dalek-cryptography/curve25519-dalek#375 and am willing to go all the way, as much as I'm capable of at least. Another...

Wow! Amazing stuff! In the meantime I have just stopped using `curve25519-dalek` completely :laughing:. Especially with the recent introduction of P-384 arithmetic. So the next step is to either close...