Skip to content

Commit 9f3a4a6

Browse files
committed
fix(rgtv-cli): pin ureq to 2.x to match existing code
The crate was bumped to ureq 3.x but src/main.rs still calls AgentBuilder, Error::Status/Transport, and RequestBuilder::set — all removed in 3.0. cargo check fails with E0433/E0599 across rgtv-cli's HTTP client. Pinning back to 2.x unblocks CI; a follow-up should migrate the code to ureq 3.x and unpin.
1 parent 913899b commit 9f3a4a6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rgtv-cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ path = "src/main.rs"
1414

1515
[dependencies]
1616
# Synchronous HTTP client — no async overhead needed for a CLI.
17-
ureq = { version = "3", features = ["json"] }
17+
ureq = { version = "2", features = ["json"] } # TODO: migrate to ureq 3.x API (AgentBuilder/Error/RequestBuilder all renamed)
1818
serde = { version = "1.0", features = ["derive"] }
1919
serde_json = "1.0"
2020
# Zeroize heap allocations holding raw credential values after use.

0 commit comments

Comments
 (0)