Skip to content

Commit

Permalink
Update crates
Browse files Browse the repository at this point in the history
  • Loading branch information
PikminGuts92 committed Apr 14, 2024
1 parent 85d1d0a commit 800b391
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ thiserror = "1.0.58"

# dev-dependencies
criterion = "0.5.1"
rstest = "0.18.2"
rstest = "0.19.0"

[workspace.lints.rust]
dead_code = "allow"
Expand Down
6 changes: 3 additions & 3 deletions core/grim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ authors.workspace = true
edition.workspace = true

[dependencies]
base64 = "0.21.7"
base64 = "0.22.0"
bitstream-io = { version = "2.2.0", optional = true }
flate2 = "1.0.28"
fon = { version = "0.6.0", optional = true }
Expand All @@ -15,12 +15,12 @@ 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.4.0", default-features = false }
half = { version = "2.4.1", default-features = false }
image = { version = "0.25.1", default-features = false, features = [ "png" ] }
itertools = { workspace = true }
lazy_static = { workspace = true }
log = { workspace = true }
nalgebra = { version = "0.32.4", optional = true }
nalgebra = { version = "0.32.5", 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" ] }
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 @@ -11,8 +11,8 @@ proc-macro = true
grim_traits = { path = "../grim_traits" }
lazy_static = { workspace = true }
proc-macro2 = "1.0.79"
quote = "1.0.35"
syn = { version = "2.0.55", default-features = false, features = [ "clone-impls", "derive", "parsing", "printing", "proc-macro" ] }
quote = "1.0.36"
syn = { version = "2.0.58", default-features = false, features = [ "clone-impls", "derive", "parsing", "printing", "proc-macro" ] }

[lints]
workspace = true
4 changes: 2 additions & 2 deletions utils/anim_preview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ edition.workspace = true
[dependencies]
grim = { workspace = true }
keyframe = "1.1.1"
nalgebra = "0.32.4"
rerun = { version = "0.13.0", features = [ "native_viewer" ] }
nalgebra = "0.32.5"
rerun = { version = "0.15.1", features = [ "native_viewer" ] }
shared = { path = "../shared" }

[lints]
Expand Down
6 changes: 3 additions & 3 deletions utils/lipsync_preview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ edition.workspace = true

[dependencies]
grim = { workspace = true, features = [ "audio" ] }
eframe = "0.26.2"
egui_plot = "0.26.2"
eframe = "0.27.2"
egui_plot = "0.27.2"
keyframe = "1.1.1"
nalgebra = "0.32.4"
nalgebra = "0.32.5"
#rerun = "0.2.0"
shared = { path = "../shared" }

Expand Down

0 comments on commit 800b391

Please sign in to comment.