mirror of
https://github.com/0xMassi/webclaw.git
synced 2026-06-08 22:25:12 +02:00
build(deps): pin wreq/wreq-util to exact rc versions
wreq is a release candidate with no API stability between rc.N builds (rc.29 broke the TLS + Response API). `cargo install` and the release workflow both ignore Cargo.lock and were re-resolving to rc.29, breaking the build. An exact `=6.0.0-rc.28` / `=3.0.0-rc.10` pin keeps every build path deterministic until wreq reaches a stable release.
This commit is contained in:
parent
9a63c1a3ca
commit
a1abf625a0
1 changed files with 6 additions and 2 deletions
|
|
@ -13,8 +13,12 @@ thiserror = { workspace = true }
|
||||||
tracing = { workspace = true }
|
tracing = { workspace = true }
|
||||||
tokio = { workspace = true }
|
tokio = { workspace = true }
|
||||||
async-trait = "0.1"
|
async-trait = "0.1"
|
||||||
wreq = { version = "6.0.0-rc.28", features = ["cookies", "gzip", "brotli", "zstd", "deflate"] }
|
# Pinned to exact pre-release versions: wreq/wreq-util are release candidates
|
||||||
wreq-util = "3.0.0-rc.10"
|
# with no semver stability between rc.N builds (rc.29 broke the TLS + Response
|
||||||
|
# API). An exact pin keeps `cargo build`, `cargo install` (which ignores
|
||||||
|
# Cargo.lock), and the release workflow all on the version that compiles.
|
||||||
|
wreq = { version = "=6.0.0-rc.28", features = ["cookies", "gzip", "brotli", "zstd", "deflate"] }
|
||||||
|
wreq-util = "=3.0.0-rc.10"
|
||||||
http = "1"
|
http = "1"
|
||||||
bytes = "1"
|
bytes = "1"
|
||||||
url = "2"
|
url = "2"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue