Eric Long
Eric Long
**Version** tokio v1.19.2 and v1.20.1 tokio-util v0.7.3 **Platform** macOS 12.3 x86_64 **Description** The following code panics: ```rust use std::io::SeekFrom; use tokio::fs::File; use tokio::io::{self, AsyncSeekExt, AsyncWriteExt, BufReader}; #[tokio::main] async fn main()...
There are many use cases where you need to treat callable objects as function, especially when writing a library. Maybe add a `{Table, AnyUserData}::into_function`, since `TableExt::call`'s implementation is just turning...
Platforms like riscv64 does have 32-bit or 64-bit atomics, but not 8-bit or 16-bit. Modified `check_working_cxx_atomics` to check sub-word atomics as well. - - - This change is [](https://reviewable.io/reviews/qtox/qtox/6657)
Modified build flags so that it will compile on riscv64. Other platforms may not support `dup2` as well, so please let me know if there are some, and I will...
This allows other architectures like RISC-V to build the library.
Current libc is too old (about 5 years ago), which does not support newer architecture such as riscv64. While newer versions are still compatible, this update should be safe.
Writing Bash scripts in Rhai is somewhat uncomfortable when it comes to Bash's `${VAR}` syntax: ```bash cmake .. ${cmake_args[@]} ninja ``` Currently I have to write ``` let script =...
Prebuilts are limited to several platforms, so it is better to support building dprint from source when they are not available on current platform. As TypeScript now requires dprint to...
This is related to https://github.com/nix-rust/nix/pull/1695, but have many issues solved here: - `{get,set}regset` now allows specifying which set of registers to read/write, as defined in `RegisterSet`. This should be the...