Tyson Nottingham

Results 11 issues of Tyson Nottingham

## Versions/Environment 1. What version of Rust are you using? 1.64.0-nightly (c0bbd42ce 2022-07-03) 1. What operating system are you using? Debian Bullseye in Docker container 1. What versions of the...

tracked-in-jira

"We should see about dropping the interning -- it was added back when we were still loading all of our data on each start up, and I'd guess is significantly...

C-improvement

Panics occurs when writing 1MiB or less with `write_hash`. That is, this works: ```rust let _ = cacache::write_hash("./cache", &[b'a'; 1024 * 1024 + 1]).await; ``` But this results in a...

This is a feature request to add support for a `--locked` flag which would cause cargo-machete to produce an error rather than inadvertently modify Cargo.toml files (currently only applicable when...

I'd like to be able to free the memory allocated for program log buffers after loading an object. I assume that's safe to do, but I noticed that `bpf_program__set_log_buf` returns...

I would like to be able to shrink allocations in certain cases, but I don't immediately see how to do that. I should mention that my understanding of this crate...

`bytes` has become a little bit of a de facto standard for low/zero-copy techniques, with authors of some popular crates being comfortable with exposing `bytes` types in their interfaces. In...

There are a couple of changes I've implemented locally that enable getting more information from the parser on partial results and errors. Unfortunately, they're all breaking changes. I'm curious if...

The main benefit of this is that it enables you to get the parsed headers from partial results when using uninitialized headers. Prior to this, on a partial result, the...

Add missing `ParserConfig` accessors, convenience methods for configuring request and response parsing simultaneously, and request parsing options that bring request parsing configuration up to parity with response parsing configuration.