Compare commits

...
2 Commits
Author SHA1 Message Date
matthias 1c7148c5e5 Updated bartender files. 2026-09-20 20:57:11 +02:00
matthias 6f1cb0c0ec Updated dependencies. 2026-09-20 15:42:24 +02:00
6 changed files with 1673 additions and 2797 deletions
Generated
+6 -6
View File
@@ -854,9 +854,9 @@ dependencies = [
[[package]] [[package]]
name = "http" name = "http"
version = "1.4.2" version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" checksum = "918d3568bebf352712bc2ef3d46a8bcf1a75b373be6539de198e9105cbbf9ce0"
dependencies = [ dependencies = [
"bytes", "bytes",
"itoa", "itoa",
@@ -1201,9 +1201,9 @@ dependencies = [
[[package]] [[package]]
name = "log" name = "log"
version = "0.4.33" version = "0.4.34"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" checksum = "f9f8bd3e56ce4dfc153cf470fffbfa98c7620958b312ca5c3a4b8d5181fd13c6"
dependencies = [ dependencies = [
"value-bag", "value-bag",
] ]
@@ -2013,9 +2013,9 @@ dependencies = [
[[package]] [[package]]
name = "tower-http" name = "tower-http"
version = "0.7.0" version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" checksum = "08a05a66a4fdd61cbbe0a1d755ffe0ca6aba159dd4820936a0ff8a8278245b9c"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"bytes", "bytes",
Binary file not shown.
+1 -1
View File
@@ -13,4 +13,4 @@ serde_json = "1.0.151"
sqlx = { version = "0.9.0", features = [ "runtime-async-std", "postgres", "chrono" ] } sqlx = { version = "0.9.0", features = [ "runtime-async-std", "postgres", "chrono" ] }
# Etc. # Etc.
log = "0.4.33" log = "0.4.34"
+1657 -2781
View File
File diff suppressed because it is too large Load Diff
+7 -7
View File
@@ -10,17 +10,17 @@
"postinstall": "nuxt prepare" "postinstall": "nuxt prepare"
}, },
"dependencies": { "dependencies": {
"@fontsource/roboto": "5.3.00", "@fontsource/roboto": "5.3.0",
"@mdi/font": "7.4.47", "@mdi/font": "7.4.47",
"@pinia/nuxt": "1.0.1", "@pinia/nuxt": "1.0.2",
"nuxt": "4.5.0", "nuxt": "4.5.2",
"pinia": "4.0.2", "pinia": "4.0.3",
"vue": "3.5.40", "vue": "3.5.43",
"vue-router": "5.2.0", "vue-router": "5.3.1",
"vuetify-pro-tiptap": "3.0.0" "vuetify-pro-tiptap": "3.0.0"
}, },
"devDependencies": { "devDependencies": {
"vite-plugin-vuetify": "2.1.3", "vite-plugin-vuetify": "2.1.3",
"vuetify": "4.1.5" "vuetify": "4.2.1"
} }
} }
+2 -2
View File
@@ -13,8 +13,8 @@ common = {path = "../common"}
axum = "0.8.9" axum = "0.8.9"
tokio = { version = "1.53.1", default-features = false, features = ["full"] } tokio = { version = "1.53.1", default-features = false, features = ["full"] }
http = "1.4.2" http = "1.5.0"
tower-http = {version = "0.7.0", features = ["cors"]} tower-http = {version = "0.7.1", features = ["cors"]}
tracing = "=0.1.44" tracing = "=0.1.44"
tracing-subscriber = "0.3.23" tracing-subscriber = "0.3.23"