chore(deps): Bump dependencies (#95)

* bump ureq to 3

* bump rand to 0.9

* cargo fmt

---------

Co-authored-by: jamjamjon <xxyydzml@outlook.com>
This commit is contained in:
Collide
2025-05-20 21:08:52 +08:00
committed by GitHub
parent 1215b9c8f4
commit a2dde94a3a
6 changed files with 48 additions and 33 deletions

View File

@ -20,8 +20,9 @@ ndarray = { version = "0.16.1", features = ["rayon", "serde"] }
indicatif = { version = "0.17.11" }
log = "0.4.26"
minifb = { version = "0.28.0" }
rand = { version = "0.8.5" }
ureq = { version = "2", default-features = true, features = [ "socks-proxy" ] }
rand = { version = "0.9" }
http = "1.3"
ureq = { version = "3", default-features = true, features = ["socks-proxy"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rayon = { version = "1.10.0" }
@ -32,17 +33,17 @@ geo = "0.30.0"
chrono = "0.4.40"
regex = "1.11.1"
sha2 = "0.10.8"
tempfile = "3.19.1"
tempfile = "3.19.1"
video-rs = { version = "0.10.3", features = ["ndarray"], optional = true }
fast_image_resize = { version = "5.1.2", features = ["image"]}
ndarray-npy = "0.9.1"
fast_image_resize = { version = "5.1.2", features = ["image"] }
ndarray-npy = "0.9.1"
half = { version = "2.3.1" }
prost = "0.13.5"
ort = { version = "2.0.0-rc.9", default-features = false, optional = true , features = [
"ndarray",
"copy-dylibs",
"half"
]}
ort = { version = "2.0.0-rc.9", default-features = false, optional = true, features = [
"ndarray",
"copy-dylibs",
"half",
] }
tokenizers = { version = "0.21.1" }
paste = "1.0.15"