Jon Gjengset

Results 171 issues of Jon Gjengset

Following a [tweet](https://twitter.com/nick_r_cameron/status/864327531935154177) by @nrc, there are now a number of Twitter bots tweeting out information about the latest nightly. While I was writing [one myself](https://twitter.com/rust_at_sunrise), I realized that it'd...

RFC 3501 [section 7.4.2](https://tools.ietf.org/html/rfc3501#section-7.4.2) has a lot to say about envelopes that would be handy to include in the docs for `Envelope`. Beyond that though, there are some observations there...

It would be very useful to be able to speed up/slow down playback, say, in increments of 0.5x.

enhancement

Currently, pressing `q` to quit castnow will not stop playback. Instead, playback will continue until the end of the buffered video. Wouldn't it make more sense for `q` to implicitly...

### Problem I have an environment variable set using `[env]` in `$HOME/.cargo/config.toml`. For a particular project, I use a dedicated `$CARGO_HOME` with its own `config.toml` which sets that environment variable...

C-bug

### Problem The [`[env] configuration section`](https://doc.rust-lang.org/cargo/reference/config.html#env) (https://github.com/rust-lang/cargo/issues/9539) does not currently impact subcommand invocations. It's not _entirely_ clear whether this is a bug or by design. My instinct is that it's...

C-bug
A-custom-subcommands

### What does this PR try to resolve? This is a continuation from the discussion in https://github.com/rust-lang/cargo/pull/10395#issuecomment-1055691480, and is aimed at being able to solve problems like https://github.com/rust-lang/cargo/issues/4423 by extending...

S-waiting-on-review

### Problem Cargo errors with an incorrect error message if a crate takes a dependency on a pre-release version with a lower patch number than the patch number of the...

C-bug
A-errors

When a Rust binary that is executed through ld.so — the [Linux dynamic linker](https://unix.stackexchange.com/questions/400621/what-is-lib64-ld-linux-x86-64-so-2-and-why-can-it-be-used-to-execute-file) — triggers a panic, the backtraces are useless. I've included a discussion of why executing through...

C-bug

Currently, a `blocking::Response` can only be constructed from `http::Response`s with a **non**-blocking `Body`: https://github.com/seanmonstar/reqwest/blob/a0a7db0113bf3df307c4de7219fdfcf70ac0f68a/src/blocking/response.rs#L420 This was probably accidental, as (from what I can tell) other conversions in `mod blocking` depend...