Skip to content

Commit

Permalink
Update crates patch versions
Browse files Browse the repository at this point in the history
  • Loading branch information
PikminGuts92 committed Mar 27, 2024
1 parent 0c6b363 commit 9eb893a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
13 changes: 6 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions core/grim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions core/grim_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion utils/anim_preview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down
2 changes: 1 addition & 1 deletion utils/lipsync_preview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }

Expand Down

0 comments on commit 9eb893a

Please sign in to comment.