msrd0

Results 93 issues of msrd0

https://blog.rust-lang.org/2025/01/09/Rust-1.84.0.html#cargo-considers-rust-versions-for-dependency-version-selection Our MSRV is currently 1.65, otherwise we cannot find a candidate for the regex-syntax crate which is a transitive dependency.

When downloading this package from crates.io, all files directly in the `tests` folder are present, but the directories within the `tests` folder are missing. This leads to the tests failing....

The api asks for a port to listen on. That port needs to be a number: https://github.com/LuckyTurtleDev/crab-hole/blob/main/src/api.rs#L24 That doesn't exactly allow me to specify a unix socket. But I want...

enhancement
no breaking change

I just tried to convert a `u128` to an `[u8; 32]` using `must_cast_mut`, like this: ```rust let mut i: u128 = 1; let bytes: &mut [u8; 32] = must_cast_mut(&mut i);...

As a follow-up to #921, I now have the following parser: ```rust use chumsky::{extra::ParserExtra, label::LabelError, prelude::*, text::{inline_whitespace, TextExpected}}; #[derive(Debug, PartialEq)] pub enum MathTree { Number(String), Word(String), Concatenation(Box, Box) } impl...

In hickory 0.25.2, my config file to forward local DNS requests to the DNS-over-TLS server at [dns.sb] looks like this: ```toml listen_port = 53 listen_addrs_ipv4 = ["127.0.0.1"] listen_addrs_ipv6 = ["::1"]...

Today I encountered the same error as #1493 inside the `gradle:alpine` (Gradle 5.3.1) docker container using GitLab CI. The error message I got was: ``` FAILURE: Build failed with an...

a:feature
in:invoking-gradle
re:comprehensibility

### Requirements - [x] I have searched the [issues](https://github.com/ryanoasis/nerd-fonts/issues) for my request and found nothing related or helpful - [x] I have checked the [FAQ](https://github.com/ryanoasis/nerd-fonts/wiki/FAQ-and-Troubleshooting) for help - [x] I...

I am using texlab with Code-OSS and am currently working on a LaTeX Beamer document. I noticed that the outline shows a lot of itemize environments, but not the frame...