Dirkjan Ochtman
Dirkjan Ochtman
### What are you really trying to do? Trying to bring up a worker process for the first time in our production environment. ### Describe the bug There's a panic...
### Is your feature request related to a problem? Please describe. It would be great if the Rust SDK dragged in as few dependencies as possible. Dependencies increase build times...
All HTTP messages in the http crate contain a bunch of shared data: the `version`, the `headers` and the `extensions`. Both the `Request` and the `Response` also allow callers to...
We recently released the [rustls-platform-verifier](https://crates.io/crates/rustls-platform-verifier) crate, and the rustls team believes this is probably the best option for most client use cases (especially on platforms like Windows, macOS, iOS and...
Original issue: https://github.com/rust-lang/rustup/issues/3689. rustup has two download backends, one based on curl and one based on reqwest: https://github.com/rust-lang/rustup/blob/master/download/src/lib.rs (Right now, the curl-based backend is the default. We'd like to switch...
As explained in https://github.com/rust-lang/rustup/issues/3122. rustup has two download backends, one based on curl and one based on reqwest: https://github.com/rust-lang/rustup/blob/master/download/src/lib.rs [Minimal reproduction](https://github.com/rust-lang/rustup/issues/3122#issuecomment-1977510022): ```dockerfile FROM arm32v7/ubuntu:16.04 RUN apt-get update && apt-get -y...
Currently the generated CI workflow has something like this: ``` jobs: linux: runs-on: ubuntu-latest strategy: matrix: target: [x86_64, x86, aarch64, armv7, s390x, ppc64le] steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4...
My project at work was affected by the yanking of 0.7.28 yesterday. I was curious about the reason (which wasn't trivial to find, since there don't seem to be any...