Skip to content

Commit

Permalink
Update crates
Browse files Browse the repository at this point in the history
  • Loading branch information
PikminGuts92 committed Feb 19, 2024
1 parent fdeec8e commit c352090
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 17 deletions.
13 changes: 7 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions core/grim/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand All @@ -50,4 +50,4 @@ bench = false
crate-type = [ "lib", "cdylib" ]

[lints]
workspace = true
workspace = true
6 changes: 3 additions & 3 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.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
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 @@ -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
workspace = true
6 changes: 3 additions & 3 deletions utils/lipsync_preview/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
workspace = true

0 comments on commit c352090

Please sign in to comment.