Skip to content

Commit

Permalink
Replace reqwest with ureq (#1407)
Browse files Browse the repository at this point in the history
* Replace reqwest with ureq for less dependencies

* Simplify code

* Cleanup
  • Loading branch information
emilk committed Oct 11, 2023
1 parent 0a5aad4 commit fcab829
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/rust/github_star_history/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ license.workspace = true
publish = false

[dependencies]
re_log = { workspace = true }
rerun = { workspace = true, features = ["web"] }
re_log.workspace = true
rerun.workspace = true

anyhow.workspace = true
chrono = { workspace = true, features = ["serde"] }
clap.workspace = true
gh-token = "0.1"
reqwest = { workspace = true, features = ["blocking", "json"] }
reqwest = { version = "0.11", features = ["blocking", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror.workspace = true

0 comments on commit fcab829

Please sign in to comment.