Skip to content

Commit 0d8b25d

Browse files
authored
Update most Rust dependencies (#2259)
1 parent 6d52151 commit 0d8b25d

File tree

11 files changed

+962
-529
lines changed

11 files changed

+962
-529
lines changed

Cargo.lock

Lines changed: 759 additions & 390 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ env_logger = "0.11"
4848
log = "0.4"
4949
bitflags = { version = "2.4", features = ["serde"] }
5050
ctor = "0.2"
51-
convert_case = "0.6"
51+
convert_case = "0.7"
5252
derivative = "2.2"
5353
tempfile = "3.6"
5454
thiserror = "2"
5555
anyhow = "1.0"
5656
proc-macro2 = "1"
5757
quote = "1.0"
58-
axum = "0.7"
58+
axum = "0.8"
5959
chrono = "0.4"
6060
ron = "0.8"
6161
fastnoise-lite = "1.1"
@@ -73,18 +73,18 @@ tokio = { version = "1.29", features = ["fs", "io-std"] }
7373
vello = { git = "https://github.com/linebender/vello.git", rev = "3275ec8" } # TODO switch back to stable when a release is made
7474
resvg = "0.44"
7575
usvg = "0.44"
76-
rand = { version = "0.8", default-features = false }
77-
rand_chacha = "0.3"
76+
rand = { version = "0.9", default-features = false }
77+
rand_chacha = "0.9"
7878
glam = { version = "0.29", default-features = false, features = ["serde"] }
7979
base64 = "0.22"
8080
image = { version = "0.25", default-features = false, features = ["png"] }
8181
rustybuzz = "0.20"
8282
spirv = "0.3"
83-
fern = { version = "0.6", features = ["colored"] }
83+
fern = { version = "0.7", features = ["colored"] }
8484
num_enum = "0.7"
8585
num-derive = "0.4"
8686
num-traits = { version = "0.2", default-features = false, features = ["i128"] }
87-
specta = { git = "https://github.com/0hypercube/specta.git", features = [
87+
specta = { git = "https://github.com/specta-rs/specta.git", features = [
8888
"glam",
8989
"derive",
9090
# "typescript",

deny.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ db-urls = ["https://github.com/rustsec/advisory-db"]
4343
# A list of advisory IDs to ignore. Note that ignored advisories will still
4444
# output a note when they are encountered.
4545
ignore = [
46-
"RUSTSEC-2024-0370", # I don't care about unmaintained proc-macro-error
47-
"RUSTSEC-2024-0388", # I don't care about unmaintained derivative
46+
"RUSTSEC-2024-0370", # Unmaintained but still fully functional crate `proc-macro-error`
47+
"RUSTSEC-2024-0388", # Unmaintained but still fully functional crate `derivative`
4848
]
4949
# Threshold for security vulnerabilities, any vulnerability with a CVSS score
5050
# lower than the range specified will be ignored. Note that ignored advisories
@@ -78,6 +78,7 @@ allow = [
7878
"OpenSSL",
7979
"Unicode-3.0",
8080
"Zlib",
81+
"NCSA",
8182
]
8283
# The confidence threshold for detecting a license from license text.
8384
# The higher the value, the more closely the license text must be to the
@@ -183,7 +184,7 @@ allow-git = []
183184

184185
[sources.allow-org]
185186
# 1 or more github.com organizations to allow git sources for
186-
github = ["linebender", "Rust-GPU", "0hypercube"]
187+
github = ["linebender", "Rust-GPU", "specta-rs"]
187188
# 1 or more gitlab.com organizations to allow git sources for
188189
#gitlab = [""]
189190
# 1 or more bitbucket.org organizations to allow git sources for

libraries/math-parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0"
1010
[dependencies]
1111
pest = "2.7"
1212
pest_derive = "2.7.11"
13-
thiserror = "1"
13+
thiserror = "2.0"
1414
lazy_static = "1.5"
1515
num-complex = "0.4"
1616
log = { workspace = true }

libraries/path-bool/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ slotmap = "1.0.7"
3232
glob = "0.3"
3333
svg = "0.18"
3434
resvg = "0.44"
35-
image = "0.24"
35+
image = "0.25"
3636

3737
# Required dependencies
3838
criterion = { version = "0.5", features = ["html_reports"] }

0 commit comments

Comments
 (0)