Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexTMjugador committed Nov 28, 2024
1 parent a88d3e6 commit c21e39d
Show file tree
Hide file tree
Showing 5 changed files with 55 additions and 86 deletions.
114 changes: 40 additions & 74 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ mmap = { git = "https://github.com/ComunidadAylas/rust-mmap" }
# https://github.com/shssoichiro/oxipng/pull/645
oxipng = { git = "https://github.com/shssoichiro/oxipng", branch = "refactor/mangen-xtask" }

# Use our fork of spng to add a high-level API for customizing the decoder chunk CRC mismatch action.
# Related PR: https://github.com/aloucks/spng-rs/pull/16
spng = { git = "https://github.com/ComunidadAylas/spng-rs", branch = "feat/decoder-crc-action" }
# Use a newer spng commit with our PR to add a high-level API for customizing the decoder chunk CRC
# mismatch action merged. Related PR: https://github.com/aloucks/spng-rs/pull/16
spng = { git = "https://github.com/aloucks/spng-rs", rev = "d3f69ff" }

[profile.release]
opt-level = 3
Expand Down
5 changes: 4 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,10 @@ skip-tree = [
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = ["https://github.com/shssoichiro/oxipng"]
allow-git = [
"https://github.com/shssoichiro/oxipng",
"https://github.com/aloucks/spng-rs",
]

[sources.allow-org]
github = ["ComunidadAylas"]
14 changes: 7 additions & 7 deletions packages/packsquash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
edition = "2021"

[dependencies]
bytes = "1.8.0"
bytes = "1.9.0"
globset = { version = "0.4.15", default-features = false }
enumset = { version = "1.1.5", features = ["serde"] }
indexmap = { version = "2.6.0", features = ["serde"] }
Expand All @@ -19,7 +19,7 @@ thiserror = "2.0.3"
ahash = "0.8.11"
patricia_tree = "0.8.0"

sysinfo = { version = "0.32.0", default-features = false, features = [
sysinfo = { version = "0.32.1", default-features = false, features = [
"system",
] }
walkdir = "2.5.0"
Expand All @@ -41,7 +41,7 @@ futures = { version = "0.3.31", default-features = false }

serde = { version = "1.0.215", features = ["derive"] }

serde_json = "1.0.132"
serde_json = "1.0.133"
json_comments = "0.2.2"
jsonpath_lib = "0.3.0"

Expand All @@ -67,9 +67,9 @@ dasp_sample = "0.11.0"
rubato = "0.16.1"
optivorbis = "0.2.0"

glsl-lang = { version = "0.7.1", features = ["lexer-v2-full", "lexer-v2-min"] }
glsl-lang-lexer = "0.7.1"
glsl-lang-pp = "0.7.1"
glsl-lang = { version = "0.7.2", features = ["lexer-v2-full", "lexer-v2-min"] }
glsl-lang-lexer = "0.7.2"
glsl-lang-pp = "0.7.2"

java-properties = { version = "2.0.0", optional = true }

Expand All @@ -94,7 +94,7 @@ rlimit = "0.10.2"

[target.'cfg(windows)'.dependencies]
winreg = "0.52.0"
wmi = { version = "0.14.0", default-features = false }
wmi = { version = "0.14.1", default-features = false }

[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/packsquash_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ mimalloc = { version = "0.1.43", default-features = false, features = [
] }

[build-dependencies]
winresource = "0.1.17"
winresource = "0.1.19"

[[bin]]
name = "packsquash"
Expand Down

0 comments on commit c21e39d

Please sign in to comment.