Update Rust and JS dependencies.

This commit is contained in:
Sebastian Jeltsch
2025-02-14 23:31:19 +01:00
parent 7ab85594e9
commit 70fef61d16
13 changed files with 400 additions and 404 deletions

39
Cargo.lock generated
View File

@@ -940,9 +940,9 @@ dependencies = [
[[package]]
name = "cc"
version = "1.2.13"
version = "1.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7777341816418c02e033934a09f20dc0ccaf65a5201ef8a450ae0105a573fda"
checksum = "0c3d1b2e905a3a7b00a6141adb0e4c0bb941d11caf55349d863942a1cc44e3c9"
dependencies = [
"shlex",
]
@@ -2034,9 +2034,9 @@ dependencies = [
[[package]]
name = "equivalent"
version = "1.0.1"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
[[package]]
name = "errno"
@@ -3254,7 +3254,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
dependencies = [
"cfg-if",
"windows-targets 0.52.6",
"windows-targets 0.48.5",
]
[[package]]
@@ -4441,9 +4441,9 @@ dependencies = [
[[package]]
name = "psm"
version = "0.1.24"
version = "0.1.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "200b9ff220857e53e184257720a14553b2f4aa02577d2ed9842d45d4b9654810"
checksum = "f58e5423e24c18cc840e1c98370b3993c6649cd1678b4d24318bcf0a083cbe88"
dependencies = [
"cc",
]
@@ -4524,9 +4524,9 @@ dependencies = [
[[package]]
name = "quinn-udp"
version = "0.5.9"
version = "0.5.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c40286217b4ba3a71d644d752e6a0b71f13f1b6a2c5311acfcbe0c2418ed904"
checksum = "e46f3055866785f6b92bc6164b76be02ca8f2eb4b002c0354b28cf4c119e5944"
dependencies = [
"cfg_aliases",
"libc",
@@ -4586,7 +4586,7 @@ checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
dependencies = [
"rand_chacha 0.9.0",
"rand_core 0.9.0",
"zerocopy 0.8.17",
"zerocopy 0.8.18",
]
[[package]]
@@ -4625,7 +4625,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b08f3c9802962f7e1b25113931d94f43ed9725bebc59db9d0c3e9a23b67e15ff"
dependencies = [
"getrandom 0.3.1",
"zerocopy 0.8.17",
"zerocopy 0.8.18",
]
[[package]]
@@ -4828,15 +4828,14 @@ dependencies = [
[[package]]
name = "ring"
version = "0.17.8"
version = "0.17.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
checksum = "e75ec5e92c4d8aede845126adc388046234541629e76029599ed35a003c7ed24"
dependencies = [
"cc",
"cfg-if",
"getrandom 0.2.15",
"libc",
"spin",
"untrusted",
"windows-sys 0.52.0",
]
@@ -7275,7 +7274,7 @@ version = "0.1.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
dependencies = [
"windows-sys 0.59.0",
"windows-sys 0.48.0",
]
[[package]]
@@ -7589,11 +7588,11 @@ dependencies = [
[[package]]
name = "zerocopy"
version = "0.8.17"
version = "0.8.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa91407dacce3a68c56de03abe2760159582b846c6a4acd2f456618087f12713"
checksum = "79386d31a42a4996e3336b0919ddb90f81112af416270cff95b5f5af22b839c2"
dependencies = [
"zerocopy-derive 0.8.17",
"zerocopy-derive 0.8.18",
]
[[package]]
@@ -7609,9 +7608,9 @@ dependencies = [
[[package]]
name = "zerocopy-derive"
version = "0.8.17"
version = "0.8.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06718a168365cad3d5ff0bb133aad346959a2074bd4a85c121255a11304a8626"
checksum = "76331675d372f91bf8d17e13afbd5fe639200b73d01f0fc748bb059f9cca2db7"
dependencies = [
"proc-macro2",
"quote",

View File

@@ -22,7 +22,7 @@ check:
poetry -C client/trailbase-py run pyright
docker:
docker buildx build --platform linux/arm64,linux/amd64 -t trailbase/trailbase .
docker buildx build --platform linux/arm64,linux/amd64 --output=type=registry -t trailbase/trailbase:latest .
cloc:
cloc --not-match-d=".*(/target|/dist|/node_modules|/vendor|.astro|.venv|/traildepot|/flutter|/assets|lock|_benchmark|/bin|/obj).*" .

View File

@@ -8,9 +8,9 @@
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^22.13.1",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vitest": "^3.0.5"

View File

@@ -17,14 +17,14 @@
"@astrojs/starlight-tailwind": "^3.0.0",
"@astrojs/tailwind": "^5.1.5",
"@iconify-json/tabler": "^1.2.16",
"astro": "^5.2.6",
"astro": "^5.3.0",
"astro-icon": "^1.1.5",
"chart.js": "^4.4.7",
"chartjs-chart-error-bars": "^4.4.4",
"chartjs-plugin-deferred": "^2.0.0",
"sharp": "^0.33.5",
"solid-js": "^1.9.4",
"starlight-links-validator": "^0.14.2",
"starlight-links-validator": "^0.14.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3"
},
@@ -32,7 +32,7 @@
"@astrojs/sitemap": "^3.2.1",
"@astrojs/solid-js": "^5.0.4",
"astro-robots-txt": "^1.0.0",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"prettier-plugin-astro": "^0.14.1"
}
}

View File

@@ -16,7 +16,7 @@
"@astrojs/tailwind": "^5.1.5",
"@nanostores/persistent": "^0.10.2",
"@nanostores/solid": "^0.5.0",
"astro": "^5.2.6",
"astro": "^5.3.0",
"astro-icon": "^1.1.5",
"nanostores": "^0.11.3",
"solid-icons": "^1.1.0",
@@ -28,7 +28,7 @@
"@iconify-json/tabler": "^1.2.16",
"@tailwindcss/typography": "^0.5.16",
"@types/dateformat": "^5.0.3",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"prettier-plugin-astro": "^0.14.1",
"quicktype": "^23.0.171",
"sharp": "^0.33.5",

View File

@@ -23,7 +23,7 @@
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^15.15.0",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vite": "^6.1.0"

View File

@@ -19,13 +19,13 @@
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/express": "^5.0.0",
"@types/node": "^22.13.1",
"@types/node": "^22.13.4",
"compression": "^1.8.0",
"cross-env": "^7.0.3",
"eslint": "^9.20.1",
"express": "^5.0.1",
"globals": "^15.15.0",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"sirv": "^3.0.0",
"tailwindcss": "^3.4.17",
"typescript-eslint": "^8.24.0",

View File

@@ -12,9 +12,9 @@
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/node": "^22.13.1",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"quicktype": "^23.0.171",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",

727
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -26,7 +26,7 @@
"@nanostores/solid": "^0.5.0",
"@solid-primitives/memo": "^1.4.0",
"@solidjs/router": "^0.15.3",
"@tanstack/solid-form": "^0.41.4",
"@tanstack/solid-form": "^0.42.0",
"@tanstack/solid-query": "^5.66.0",
"@tanstack/solid-table": "^8.21.2",
"@tanstack/table-core": "^8.21.2",
@@ -58,7 +58,7 @@
"globals": "^15.15.0",
"jsdom": "^26.0.0",
"postcss": "^8.5.2",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"tailwindcss": "^3.4.17",
"ts-proto": "^2.6.1",
"typescript": "^5.7.3",

View File

@@ -16,7 +16,7 @@
"@astrojs/solid-js": "^5.0.4",
"@astrojs/tailwind": "^5.1.5",
"@kobalte/core": "^0.13.8",
"astro": "^5.2.6",
"astro": "^5.3.0",
"astro-icon": "^1.1.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
@@ -29,7 +29,7 @@
"devDependencies": {
"@iconify-json/tabler": "^1.2.16",
"@tailwindcss/typography": "^0.5.16",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"prettier-plugin-astro": "^0.14.1",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.17",

View File

@@ -40,7 +40,7 @@
"globals": "^15.15.0",
"http-status": "^2.1.0",
"jsdom": "^26.0.0",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"tinybench": "^3.1.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",

View File

@@ -13,7 +13,7 @@
"devDependencies": {
"@eslint/js": "^9.20.0",
"eslint": "^9.20.1",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"typescript": "^5.7.3"
}
}