Cathal
Cathal
Just to update, locking during migrations can be configured now, thanks to https://github.com/launchbadge/sqlx/pull/2063
For anyone stumbling upon this, this command should work for you. ```shell git ls-files | xargs misspell ```
I was able to get the tests working on `i686-pc-windows-gnu`. Needed to install both 32-bit `clang` and `NASM`. ```yaml name: CI on: pull_request: push: branches: - main env: REQWEST_TEST_BODY_FULL: 1...
Did a little more digging to figure out where the 2nd `reqwest` version comes from. It's pulled in by the `jsonschema` feature `resolve-http`. Removing that feature: ```diff - jsonschema =...
Here's the `--timings` files for the before and after `syn` builds: - [sqlx-before.html](https://github.com/user-attachments/files/23125922/sqlx-before.html) - [sqlx-after.html](https://github.com/user-attachments/files/23125927/sqlx-after.html)
> However, Describe is not a public API; it only exists to support the query macros. Ah, I overlooked that aspect. Yes, that would be a much nicer solution.
By truly agnostic, I mean agnostic across all protocols/features. Looking at the `tokio::spawn` usages in the h2/h3 stream code, I don't think the old `async-std` feature was actually free of...
Loom types don't support const initialization: https://github.com/tokio-rs/loom/issues/170 Loom also doesn't support LazyLock yet either: https://github.com/tokio-rs/loom/issues/117 So any change here would need one of those two issues to be resolved upstream...
Just hit this issue too. `reqwest` silently ignores certain locations (e.g. `Location: /café`). Technically `Location: /café` is non-compliant, and should be percent-encoded by the server. Though the spec does allow...