msrd0
msrd0
surf support is outdated and surf is no longer maintained. It should be removed from this crate. ORIGINAL ISSUE TEXT: The `surf` crate has not only seen no releases in...
Consider the following source set: ```gradle sourceSets { main { java.srcDirs = ['src/', 'generated/'] resources.srcDirs = ['res/'] } } ``` Right now, it is not possible to write something like...
Consider wrapping it in a newtype struct like this: ```rust #[derive(Deserialize, Eq, Hash, PartialEq, PartialOrd, Ord, Serialize)] #[serde(transparent)] pub struct MediaHash( #[serde(with = "serde_big_array::BigArray")] pub database::Hash ); ```
When code blocks are part of lists, their three backticks need to be indented (as well as its content). When using an input [like this one](https://github.com/msrd0/cargo-doc2readme/blob/6373d7f5cb7c3fd565d229983897ecda7d96dba0/tests/pass/code-block-in-list/lib.rs), pulldown-cmark produces multiple text...
**Describe the bug** When you `kill` a program that currently has an open inquire prompt, i.e. nicely ask the program to shut down, inquire does not properly clean up after...
**Describe the bug** DNSSEC isn't checked properly. **To Reproduce** Start hickory-dns with the following config: ```toml listen_port = 53 listen_addrs_ipv4 = ["127.0.0.1"] listen_addrs_ipv6 = ["::1"] [[zones]] zone = "." zone_type...
I sometimes write enums with a comment at the end saying something like "I should add foo in the future". Like ```rust enum MyEnum { Bar, // I should add...