iHsin
iHsin
It might be introduced by `ring`
> It looks like we shouldn't target a specific CPU which would cause degradation on other platforms? Unless we build binary for each cpu ? I use target CPU because...
> from my view, the real problem is, we even don't know where the bottleneck is, and we don't have any measures except the performance boost in theory. We do...
Close in favor of https://github.com/RustCrypto/AEADs/issues/427#issuecomment-1142704771
I also want a `#[snafu(from)]` attribute, makes ```rust #[derive(Debug, Snafu)] pub enum Error { Io { #[snafu(from)] source: std::io::Error, backtrace: Backtrace, }, } ``` equivalent to ```rust #[derive(Debug, Snafu)] pub...
目前rust的mipsel工具链被降级了,没法编译
https://github.com/rust-lang/compiler-team/issues/648
现在构建了mips架构的二进制,没有打包但是可以用curl下。 https://github.com/Watfaq/clash-rs/releases/tag/latest **没有测试过**
@djc To facilitate the discussion, let's consider a scenario involving a QUIC-based application-layer protocol. In this protocol, the client must send an authentication packet to the server; otherwise, all other...