Eric Kidd
Eric Kidd
I spoke with @dkastner about this again today, and I'm still leaning against supporting >80 char table output. Instead, it might be possible to do something like the following: ```sh...
Thank you very much to everyone who tracked this down! I just discovered that citusdata.com uses CN-only certificates for PostgreSQL databases. These will fail with `BadCertificate` because of the issue...
Thank you for looking to this! Since Citus Data has only weeks to live, I'm switching `dbcrossbar` over `webpki` ahead of schedule. Unfortunately, it's unlikely that we'll be able to...
Thank you to everyone for following up on this! I can confirm that this patch appears to have entirely fixed a bug where `aiopg` applications would hang indefinitely. We encountered...
Yup, coverage is stuck at 1584 for more than a half-billion runs. Either I've found everything, or `cargo fuzz` can't find it's way into the remaining corners of the code...
Also note that coverage numbers drop drastically, probably because of the elimination of basic blocks by the optimizer. But the corpus remains the same size.
> Well, yeah, but the branches in libstd will be opaque to the fuzzer, no? I suspect this is why I can't usefully fuzz the `vobsub` crate, which does lots...
OK, there's some useful information in [the Reddit thread announcing `cargo fuzz`](https://www.reddit.com/r/rust/comments/5va0mi/cargofuzz_an_easy_way_to_fuzz_your_crates/de0h7o4/). This links to [Better backtraces](https://github.com/japaric/rust-san#better-backtraces), which explains how to rebuild `rust-src` using `xargo`. But I'm not quite sure...
@nagisa Thank you for your advice! It turned out I had two problems: 1. The MPEG2 packet formats are complex enough that I really did need to start with a...
TL;DR: The magic tricks are: - `"module": "esNext"` in `tsconfig.json` - `await import('./mymod')` - `typeof import('./mymod')` ## Details In your `tsconfig.json`, set `"module": "esNext"` so that you can use `async...