From 9eb893a2c93dde90764a99df58e6eced533978bd Mon Sep 17 00:00:00 2001 From: PikminGuts92 Date: Tue, 26 Mar 2024 22:43:34 -0400 Subject: [PATCH] Update crates patch versions --- Cargo.toml | 13 ++++++------- core/grim/Cargo.toml | 10 +++++----- core/grim_macros/Cargo.toml | 4 ++-- utils/anim_preview/Cargo.toml | 2 +- utils/lipsync_preview/Cargo.toml | 2 +- 5 files changed, 15 insertions(+), 16 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d4bf04f..fb2e41c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,18 +18,17 @@ authors = ["PikminGuts92"] edition = "2021" [workspace.dependencies] -clap = { version = "4.5.1", features = ["derive"] } +clap = { version = "4.5.4", features = ["derive"] } gltf = { version = "=1.4.0", default-features = false, features = [ "import", "names", "utils" ] } gltf-json = { version = "=1.4.0", features = [ "names" ] } grim = { path = "core/grim" } itertools = "0.12.1" lazy_static = "1.4.0" -log = "0.4.20" -serde = { version = "1.0.196", features = ["derive"] } -serde_json = "1.0.113" -# simplelog = "0.12.1" -simplelog = { git = "https://github.com/Drakulix/simplelog.rs", rev = "4ef071d" } -thiserror = "1.0.57" +log = "0.4.21" +serde = { version = "1.0.197", features = ["derive"] } +serde_json = "1.0.115" +simplelog = "0.12.2" +thiserror = "1.0.58" # dev-dependencies criterion = "0.5.1" diff --git a/core/grim/Cargo.toml b/core/grim/Cargo.toml index badc1a5..c16fa8f 100644 --- a/core/grim/Cargo.toml +++ b/core/grim/Cargo.toml @@ -15,17 +15,17 @@ grim_gltf = { path = "../grim_gltf", optional = true } grim_macros = { path = "../grim_macros" } grim_midi = {path = "../grim_midi", optional = true } grim_traits = { path = "../grim_traits" } -half = { version = "2.3.1", default-features = false } -image = { version = "0.24.8", default-features = false, features = [ "dxt", "png" ] } +half = { version = "2.4.0", default-features = false } +image = { version = "0.24.9", default-features = false, features = [ "dxt", "png" ] } itertools = { workspace = true } lazy_static = { workspace = true } log = { workspace = true } -nalgebra = { version = "0.32.3", optional = true } +nalgebra = { version = "0.32.4", optional = true } nom = "7.1.3" # pyo3 = { version = "0.17.3", optional = true, features = [ "extension-module" ] } pyo3 = { git = "https://github.com/PyO3/pyo3", branch = "cfg-feature-pyo3", optional = true, features = [ "experimental-inspect", "extension-module" ] } -rayon = "1.8.1" -regex = { version = "1.10.3", default-features = false, features = [ "std" ] } +rayon = "1.10.0" +regex = { version = "1.10.4", default-features = false, features = [ "std" ] } serde = { optional = true, workspace = true } thiserror = { workspace = true } wav = { version = "1.0.0", optional = true } diff --git a/core/grim_macros/Cargo.toml b/core/grim_macros/Cargo.toml index 43d90a6..1f374f1 100644 --- a/core/grim_macros/Cargo.toml +++ b/core/grim_macros/Cargo.toml @@ -10,9 +10,9 @@ proc-macro = true [dependencies] grim_traits = { path = "../grim_traits" } lazy_static = { workspace = true } -proc-macro2 = "1.0.78" +proc-macro2 = "1.0.79" quote = "1.0.35" -syn = { version = "2.0.49", default-features = false, features = [ "clone-impls", "derive", "parsing", "printing", "proc-macro" ] } +syn = { version = "2.0.55", default-features = false, features = [ "clone-impls", "derive", "parsing", "printing", "proc-macro" ] } [lints] workspace = true diff --git a/utils/anim_preview/Cargo.toml b/utils/anim_preview/Cargo.toml index ecea464..29afd81 100644 --- a/utils/anim_preview/Cargo.toml +++ b/utils/anim_preview/Cargo.toml @@ -7,7 +7,7 @@ edition.workspace = true [dependencies] grim = { workspace = true } keyframe = "1.1.1" -nalgebra = "0.32.3" +nalgebra = "0.32.4" rerun = { version = "0.13.0", features = [ "native_viewer" ] } shared = { path = "../shared" } diff --git a/utils/lipsync_preview/Cargo.toml b/utils/lipsync_preview/Cargo.toml index d28c402..8330507 100644 --- a/utils/lipsync_preview/Cargo.toml +++ b/utils/lipsync_preview/Cargo.toml @@ -9,7 +9,7 @@ grim = { workspace = true, features = [ "audio" ] } eframe = "0.26.2" egui_plot = "0.26.2" keyframe = "1.1.1" -nalgebra = "0.32.3" +nalgebra = "0.32.4" #rerun = "0.2.0" shared = { path = "../shared" }