Update deps

This commit is contained in:
2026-05-23 17:43:02 +02:00
parent e9c505b625
commit e38b6dae6d
4 changed files with 553 additions and 183 deletions
Generated
+524 -161
View File
File diff suppressed because it is too large Load Diff
+13 -17
View File
@@ -8,21 +8,17 @@ crate-type = ["lib"]
bench = false
[dependencies]
can-dbc = "9.1.0"
codegen = "0.3.0"
dbc-codegen = "0.3.0"
nom = "8.0.0"
bytes = "1.11.1"
memmap2 = "0.9.10"
memchr = "2.8.0"
crossbeam-channel = "0.5.15"
hashbrown = { version = "0.17.1", features = ["rayon"] }
bitvec = "1.0.1"
byteorder = "1.5.0"
page_size = "0.6.0"
positioned-io = "0.3.5"
atoi_simd = "0.18.1"
voracious_radix_sort = { version = "1.2.0", features = ["voracious_multithread"] }
rayon = "1.12.0"
can-dbc = "9.1"
bytes = "1.11"
memmap2 = "0.9"
memchr = "2.8"
hashbrown = { version = "0.17", features = ["rayon"] }
bitvec = "1.0"
byteorder = "1.5"
page_size = "0.6"
positioned-io = "0.3"
atoi_simd = "0.18"
voracious_radix_sort = { version = "1.2", features = ["voracious_multithread"] }
rayon = "1.12"
chrono = { version = "0.4", default-features = false, features = ["std"] }
logos = "0.16.1"
logos = "0.16"
+1 -1
View File
@@ -5,4 +5,4 @@ edition = "2024"
[dependencies]
libsvld = { path = "../libsvld" }
can-dbc = "9.1.0"
can-dbc = "9.1"
+15 -4
View File
@@ -10,10 +10,21 @@ bench = false
[dependencies]
libsvld = { path = "../libsvld" }
can-dbc = "9.1.0"
slint = "1.16.1"
rfd = "0.17.2"
can-dbc = "9.1"
slint = {
version = "1.16",
default-features = false,
features = [
"accessibility",
"backend-winit",
"backend-winit-wayland",
"compat-1-2",
"renderer-femtovg-wgpu",
"renderer-software",
"std" ]
}
rfd = "0.17"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
[build-dependencies]
slint-build = "1.16.1"
slint-build = "1.16"