est31

Results 89 issues of est31

Seems that rust has now a collision with two commits starting with the same sequence, leading in a commit mentioned by bors not being auto linked: https://github.com/rust-lang/rust/pull/38367#issuecomment-267129318 Would it be...

This doesn't work with memoffset: ```Rust struct Foo { bar: f32, baz: [f32], } offset_of!(Foo, bar); ``` Even though this (unsound) code works: ```Rust struct Foo { bar: f32, baz:...

Hi! I've seen that your app was open source, and your source code files are under Apache-2.0. what about the other files? Are they open source too? It would be...

@tenplus1 and others on IRC have brought up the need for music on minetest servers. One of its downsides is its big size. This can be fought with by using...

@ Client / Audiovisuals
Feature request
Sounds
Supported by core dev

While Ring can load traditional PKCS#1 1.5 RSA keys, it can't load RSA-PSS (PKCS#1 2.1) keys. Example: ```Rust extern crate ring; extern crate pem; fn main() { use ring::signature::RsaKeyPair; /*...

Since #117556 we now lint for code like ([playground](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2021&gist=62065b21fdf08aab3eb8ad6a069aaeea)): ```rust use std::sync::atomic::AtomicI32; use std::sync::Mutex; static mut X: AtomicI32 = AtomicI32::new(1); static mut Y: Mutex = Mutex::new(0); fn foo() { unsafe...

A-diagnostics

More than half of the (uncompressed) .wasm file of `wa-serde-derive` is made up of the debug info section.

It seems that panic information is still compiled into the wasm file. The crate file can be downloaded from this [link](https://d19xqa3lc3clo8.cloudfront.net/crates/wa-serde-derive/wa-serde-derive-0.1.101.crate). It contains the wasm file (2.7 MB uncompressed). If...

I am using reqwest to download crates from the Amazon CloudFront crates.io crate storage backend (to not artificially inflate the download counter). For most crates this works greatly, as in...

C-bug 🐞
A-backend ⚙️

Currently, clients can freely move items around, set blocks, etc. It would be great if clients did local prediction but the server would keep its own log of things to...