diff --git a/Cargo.toml b/Cargo.toml index bf87795..f706263 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,17 +18,18 @@ authors = ["PikminGuts92"] edition = "2021" [workspace.dependencies] -clap = { version = "4.4.18", features = ["derive"] } +clap = { version = "4.5.1", features = ["derive"] } gltf = { version = "=1.3.0", default-features = false, features = [ "import", "names", "utils" ] } gltf-json = { version = "=1.3.0", features = [ "names" ] } grim = { path = "core/grim" } -itertools = "0.12.0" +itertools = "0.12.1" lazy_static = "1.4.0" log = "0.4.20" -serde = { version = "1.0.195", features = ["derive"] } -serde_json = "1.0.111" -simplelog = "0.12.1" -thiserror = "1.0.56" +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" [workspace.lints.rust] dead_code = "allow" diff --git a/core/grim/Cargo.toml b/core/grim/Cargo.toml index 427cf27..459f4b4 100644 --- a/core/grim/Cargo.toml +++ b/core/grim/Cargo.toml @@ -24,8 +24,8 @@ nalgebra = { version = "0.32.3", 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.0" -regex = { version = "1.10.2", default-features = false, features = [ "std" ] } +rayon = "1.8.1" +regex = { version = "1.10.3", default-features = false, features = [ "std" ] } serde = { optional = true, workspace = true } thiserror = { workspace = true } wav = { version = "1.0.0", optional = true } @@ -50,4 +50,4 @@ bench = false crate-type = [ "lib", "cdylib" ] [lints] -workspace = true \ No newline at end of file +workspace = true diff --git a/core/grim_macros/Cargo.toml b/core/grim_macros/Cargo.toml index e500b4d..43d90a6 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.76" +proc-macro2 = "1.0.78" quote = "1.0.35" -syn = { version = "2.0.48", default-features = false, features = [ "clone-impls", "derive", "parsing", "printing", "proc-macro" ] } +syn = { version = "2.0.49", default-features = false, features = [ "clone-impls", "derive", "parsing", "printing", "proc-macro" ] } [lints] -workspace = true \ No newline at end of file +workspace = true diff --git a/utils/anim_preview/Cargo.toml b/utils/anim_preview/Cargo.toml index 00386a0..ecea464 100644 --- a/utils/anim_preview/Cargo.toml +++ b/utils/anim_preview/Cargo.toml @@ -8,8 +8,8 @@ edition.workspace = true grim = { workspace = true } keyframe = "1.1.1" nalgebra = "0.32.3" -rerun = { version = "0.12.0", features = [ "native_viewer" ] } +rerun = { version = "0.13.0", features = [ "native_viewer" ] } shared = { path = "../shared" } [lints] -workspace = true \ No newline at end of file +workspace = true diff --git a/utils/lipsync_preview/Cargo.toml b/utils/lipsync_preview/Cargo.toml index 04b89ba..d28c402 100644 --- a/utils/lipsync_preview/Cargo.toml +++ b/utils/lipsync_preview/Cargo.toml @@ -6,12 +6,12 @@ edition.workspace = true [dependencies] grim = { workspace = true, features = [ "audio" ] } -eframe = "0.25.0" -egui_plot = "0.25.0" +eframe = "0.26.2" +egui_plot = "0.26.2" keyframe = "1.1.1" nalgebra = "0.32.3" #rerun = "0.2.0" shared = { path = "../shared" } [lints] -workspace = true \ No newline at end of file +workspace = true