diff --git a/apps/backend/Cargo.lock b/apps/backend/Cargo.lock index 3960639..714fd80 100644 --- a/apps/backend/Cargo.lock +++ b/apps/backend/Cargo.lock @@ -174,6 +174,12 @@ version = "0.22.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" +[[package]] +name = "base64" +version = "0.23.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac07cdecf99051d9a5238b80f35af32cdeba5b336e55d957b318b50137e18da5" + [[package]] name = "base64ct" version = "1.8.3" @@ -962,7 +968,7 @@ version = "0.1.20" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-channel", "futures-util", @@ -1303,7 +1309,7 @@ name = "methanium-status" version = "0.1.0" dependencies = [ "axum", - "base64", + "base64 0.23.1", "chrono", "http", "mtp", @@ -1314,7 +1320,7 @@ dependencies = [ "thiserror 2.0.19", "tokio", "toml", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "uuid", @@ -1439,7 +1445,7 @@ name = "mtp-codec" version = "0.2.0" source = "git+https://git.methanium.net/methanium/mtp.git?rev=a692bed326dbfc8eac1a05825f4a287cbab6fd3e#a692bed326dbfc8eac1a05825f4a287cbab6fd3e" dependencies = [ - "base64", + "base64 0.22.1", "byteorder", "mtp-common", "mtp-crypto", @@ -1463,7 +1469,7 @@ name = "mtp-crypto" version = "0.2.0" source = "git+https://git.methanium.net/methanium/mtp.git?rev=a692bed326dbfc8eac1a05825f4a287cbab6fd3e#a692bed326dbfc8eac1a05825f4a287cbab6fd3e" dependencies = [ - "base64", + "base64 0.22.1", "chacha20poly1305", "ed25519-dalek", "getrandom 0.4.3", @@ -1666,7 +1672,7 @@ version = "3.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be" dependencies = [ - "base64", + "base64 0.22.1", "serde_core", ] @@ -1945,7 +1951,7 @@ version = "0.12.28" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" dependencies = [ - "base64", + "base64 0.22.1", "bytes", "futures-core", "http", @@ -1968,7 +1974,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -2709,6 +2715,24 @@ name = "tower-http" version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "bitflags", "bytes", @@ -2725,11 +2749,9 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", "tracing", - "url", ] [[package]] diff --git a/apps/backend/Cargo.toml b/apps/backend/Cargo.toml index 4563089..bb54195 100644 --- a/apps/backend/Cargo.toml +++ b/apps/backend/Cargo.toml @@ -5,7 +5,7 @@ edition = "2024" [dependencies] axum = "0.8" -base64 = "0.22" +base64 = "0.23" chrono = { version = "0.4", features = ["serde"] } http = "1" mtp = { git = "https://git.methanium.net/methanium/mtp.git", rev = "a692bed326dbfc8eac1a05825f4a287cbab6fd3e", features = ["crypto", "web-server"] } @@ -15,7 +15,7 @@ serde_json = "1" thiserror = "2" tokio = { version = "1", features = ["full"] } toml = "0.9" -tower-http = { version = "0.6", features = ["fs", "trace"] } +tower-http = { version = "0.7", features = ["fs", "trace"] } tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } uuid = { version = "1", features = ["serde", "v4"] } diff --git a/apps/frontend/package.json b/apps/frontend/package.json index 0bd8af1..b4a8e89 100644 --- a/apps/frontend/package.json +++ b/apps/frontend/package.json @@ -21,7 +21,7 @@ "@tanstack/router-plugin": "^1.131.35", "@types/react": "^19.2.0", "@types/react-dom": "^19.2.0", - "@vitejs/plugin-react": "^5.0.4", + "@vitejs/plugin-react": "^6.0.0", "tailwindcss": "^4.3.1", "vite": "^7.1.12" } diff --git a/package.json b/package.json index 2ce22f5..2f7e079 100644 --- a/package.json +++ b/package.json @@ -18,7 +18,7 @@ "oxlint": "^1.28.0", "prettier": "^3.6.2", "typescript": "^7.0.0", - "@types/node": "^24.0.0", + "@types/node": "^26.0.0", "concurrently": "^9.2.1" } }