deps: update dependencies

This commit is contained in:
2026-08-22 20:59:43 +08:00
parent c0f2d1a20a
commit 89f5d84009
5 changed files with 210 additions and 411 deletions
Generated
+203 -399
View File
File diff suppressed because it is too large Load Diff
+4 -8
View File
@@ -22,17 +22,13 @@ bumpalo = {
}
ere = "0.2"
ghost-cell = "0.2"
hashbrown = "0.16"
num_enum = "0.7.5"
hashbrown = "0.17"
num_enum = "0.7"
rnix = "0.14"
rowan = "0.16"
smallvec = { version = "1.15", features = ["const_generics", "const_new"] }
string-interner = "0.19"
[workspace.dependencies.gc-arena]
git = "https://github.com/kyren/gc-arena"
rev = "75671ae03f53718357b741ed4027560f14e90836"
features = ["allocator-api2", "hashbrown", "smallvec"]
string-interner = "0.20"
gc-arena = { version = "0.7", features = ["hashbrown", "smallvec"] }
# https://emschwartz.me/your-clippy-config-should-be-stricter/
# tombi: format.rules.table-keys-order.disabled = true
+1 -2
View File
@@ -7,10 +7,9 @@ edition = "2024"
proc-macro = true
[dependencies]
manyhow = "0.11"
proc-macro2 = "1.0"
quote = "1.0"
syn = { version = "2.0", features = ["full", "visit"] }
syn = { version = "3.0", features = ["full", "visit-mut"] }
[lints]
workspace = true
+1 -1
View File
@@ -7,7 +7,7 @@ edition = "2024"
gc-arena = { workspace = true }
hashbrown = { workspace = true }
smallvec = { workspace = true }
sysinfo = { version = "0.38", default-features = false, features = ["system"] }
sysinfo = { version = "0.39", default-features = false, features = ["system"] }
fix-bytecode = { path = "../fix-bytecode" }
fix-error = { path = "../fix-error" }
+1 -1
View File
@@ -48,7 +48,7 @@ fix-vm = { path = "../fix-vm" }
[dev-dependencies]
criterion = { version = "0.8", features = ["html_reports"] }
serial_test = "3.5"
serial_test = "4.0"
tempfile = "3.24"
test-log = { version = "0.2", features = ["trace"] }