# HG changeset patch # User Emmanuel Gil Peyrot # Date 1661872144 -7200 # Node ID dbe2ddca4a8b71e31a7d54a3c769ea446ec2577a # Parent ccb04468c5fa21c142d8406f84ed777530874ac1 Rust: Bump nom and image to their latest version diff --git a/formats/Cargo.toml b/formats/Cargo.toml --- a/formats/Cargo.toml +++ b/formats/Cargo.toml @@ -10,7 +10,7 @@ license = "GPL-3.0-or-later" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -nom = { version = "6", default-features = false, features = ["alloc"] } +nom = { version = "7", default-features = false, features = ["alloc"] } encoding_rs = "0.8" bitflags = "1" touhou-utils = "*" diff --git a/runners/Cargo.toml b/runners/Cargo.toml --- a/runners/Cargo.toml +++ b/runners/Cargo.toml @@ -13,7 +13,7 @@ license = "GPL-3.0-or-later" touhou-formats = "*" touhou-interpreters = "*" touhou-utils = "*" -image = { version = "0.23", default-features = false, features = ["png", "jpeg"] } +image = { version = "0.24", default-features = false, features = ["png", "jpeg"] } luminance = "0.39" luminance-glfw = { version = "0.12", default-features = false, features = ["log-errors"] } luminance-derive = "0.5"