Skip to content

Commit

Permalink
Update crates
Browse files Browse the repository at this point in the history
  • Loading branch information
PikminGuts92 committed Jun 25, 2024
1 parent 094b800 commit ed299af
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 18 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ authors = ["PikminGuts92"]
edition = "2021"

[workspace.dependencies]
clap = { version = "4.5.4", features = ["derive"] }
clap = { version = "4.5.7", 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"
itertools = "0.13.0"
lazy_static = "1.5.0"
log = "0.4.21"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.115"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
simplelog = "0.12.2"
thiserror = "1.0.58"
thiserror = "1.0.61"

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

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

[dependencies]
base64 = "0.22.0"
bitstream-io = { version = "2.2.0", optional = true }
flate2 = "1.0.28"
base64 = "0.22.1"
bitstream-io = { version = "2.4.2", optional = true }
flate2 = "1.0.30"
fon = { version = "0.6.0", optional = true }
gltf = { workspace = true, optional = true }
gltf-json = { workspace = true, optional = true }
Expand All @@ -20,16 +20,16 @@ image = { version = "0.25.1", default-features = false, features = [ "png" ] }
itertools = { workspace = true }
lazy_static = { workspace = true }
log = { workspace = true }
nalgebra = { version = "0.32.5", optional = true }
nalgebra = { version = "0.33.0", 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.10.0"
regex = { version = "1.10.4", default-features = false, features = [ "std", "unicode" ] }
regex = { version = "1.10.5", default-features = false, features = [ "std", "unicode" ] }
serde = { optional = true, workspace = true }
texpresso = { version = "2.0.1", features = [ "rayon" ] }
thiserror = { workspace = true }
wav = { version = "1.0.0", optional = true }
wav = { version = "1.0.1", optional = true }

[dev-dependencies]
criterion = { workspace = 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.79"
proc-macro2 = "1.0.86"
quote = "1.0.36"
syn = { version = "2.0.58", default-features = false, features = [ "clone-impls", "derive", "parsing", "printing", "proc-macro" ] }
syn = { version = "2.0.68", 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.5"
rerun = { version = "0.15.1", features = [ "native_viewer" ] }
nalgebra = "0.33.0"
rerun = { version = "0.16.1", features = [ "native_viewer" ] }
shared = { path = "../shared" }

[lints]
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.27.2"
egui_plot = "0.27.2"
keyframe = "1.1.1"
nalgebra = "0.32.5"
nalgebra = "0.33.0"
#rerun = "0.2.0"
shared = { path = "../shared" }

Expand Down

0 comments on commit ed299af

Please sign in to comment.