build: bump dependencies
This commit is contained in:
parent
56a6df0c57
commit
2cf18f5ac2
5 changed files with 194 additions and 27 deletions
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue