build: bump dependencies

This commit is contained in:
Amaan Qureshi 2025-01-26 13:27:47 -05:00
parent 56a6df0c57
commit 2cf18f5ac2
5 changed files with 194 additions and 27 deletions

View file

@ -27,6 +27,6 @@ regex.workspace = true
semver.workspace = true
serde.workspace = true
serde_json.workspace = true
ureq = "2.12.1"
ureq = "3.0.0"
notify = "8.0.0"
notify-debouncer-full = "0.5.0"

View file

@ -9,7 +9,8 @@ use crate::create_commit;
pub fn run() -> Result<()> {
let response = ureq::get("https://api.github.com/repos/emscripten-core/emsdk/tags")
.call()?
.into_string()?;
.body_mut()
.read_to_string()?;
let json = serde_json::from_str::<Value>(&response)?;
let version = json