Ben Kimock
Ben Kimock
Observed on released trust-dns-proto/resolver 0.20.0 and 8f1a8eeff8389817d747ee621044f9c73a7f4622 This parsing failure of a probably-invalid iodef eventually causes the resolver to report that the network is unreachable, which seems pretty wrong to...
Serialization of JSON does a lot of tiny writes, especially for delimiters. As far as I can tell, every `Write` impl (except for that on slices of bytes) contains a...
More Fuzzing! Failing input to the PNM fuzzer is ``` [80, 52, 52, 50, 57, 52, 57, 54, 55, 50, 57, 50, 10, 48, 10, 49] ``` The offending line...
I've been manually inspecting the crater logs from the most-downloaded crates, and I think a lot of people don't realize how many published crates are skipped. This crate is skipped...
``` ╭ ➜ kimockb@gator3:~/kernel ╰ ➤ cat Xargo.toml [dependencies.core] git = "https://github.com/japaric/core64" ╭ ➜ kimockb@gator3:~/kernel ╰ ➤ xargo rustc --target nvptx64-nvidia-cuda -- --emit=asm Compiling kernel v0.1.0 (file:///home/kimockb/kernel) 'bdver1' is not...
Based on https://github.com/integer32llc/rust-playground/issues/446#issuecomment-670917927 I really want to be able to set `MIRIFLAGS` when running code in the playground. The community Discord uses a bot that accesses the playground and we...
If I wanted to make a fork of tiny that can speak to other IRC-like chat services where would I start? I've poked around in the code and can't seem...
Previously, this test tried to us a dangling/deallocated pointer. Fortunately there's a way to run a `Drop` impl without deallocation :)
`once_cell` is an extremely widely-used crate, so it would be very nice if it conformed to the stricted/simplest/checkable model we have for aliasing in Rust. To do this, we need...
In a decently large project with 255 dependencies, this crate ranks 6th by compile time in a debug build: | crate | build time | | ------- | --------------| |...