Compare commits

...

2 Commits

Author SHA1 Message Date
10e23e37e5
Updated all crates to the 2024 edition. 2025-10-02 06:53:16 +01:00
bae8233dbf
Updated all dependencies. 2025-10-02 06:53:00 +01:00
5 changed files with 464 additions and 498 deletions

920
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -14,26 +14,26 @@ homepage = { path = "homepage" }
homepage-backend = { path = "homepage-backend" }
homepage-frontend = { path = "homepage-frontend" }
axum = "0.8.3"
axum = "0.8.6"
console_error_panic_hook = "0.1.7"
derive_more = "2.0.1"
dynatos = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "7cf075a0144fdd7b4fbc47c8806117ed5e27bc5f" }
dynatos-builder = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "7cf075a0144fdd7b4fbc47c8806117ed5e27bc5f" }
dynatos-context = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "7cf075a0144fdd7b4fbc47c8806117ed5e27bc5f" }
dynatos-html = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "7cf075a0144fdd7b4fbc47c8806117ed5e27bc5f" }
dynatos-loadable = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "7cf075a0144fdd7b4fbc47c8806117ed5e27bc5f" }
dynatos-reactive = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "7cf075a0144fdd7b4fbc47c8806117ed5e27bc5f" }
dynatos-router = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "7cf075a0144fdd7b4fbc47c8806117ed5e27bc5f" }
dynatos-title = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "7cf075a0144fdd7b4fbc47c8806117ed5e27bc5f" }
dynatos-util = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "7cf075a0144fdd7b4fbc47c8806117ed5e27bc5f" }
reqwest = "0.12.15"
serde = "1.0.219"
tokio = "1.44.2"
toml = "0.8.20"
dynatos = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "24a76e3f37118434eef10d41c1597e877e5bb7a3" }
dynatos-builder = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "24a76e3f37118434eef10d41c1597e877e5bb7a3" }
dynatos-context = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "24a76e3f37118434eef10d41c1597e877e5bb7a3" }
dynatos-html = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "24a76e3f37118434eef10d41c1597e877e5bb7a3" }
dynatos-loadable = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "24a76e3f37118434eef10d41c1597e877e5bb7a3" }
dynatos-reactive = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "24a76e3f37118434eef10d41c1597e877e5bb7a3" }
dynatos-router = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "24a76e3f37118434eef10d41c1597e877e5bb7a3" }
dynatos-title = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "24a76e3f37118434eef10d41c1597e877e5bb7a3" }
dynatos-util = { git = "ssh://github.com/Zenithsiz/dynatos", rev = "24a76e3f37118434eef10d41c1597e877e5bb7a3" }
reqwest = "0.12.23"
serde = "1.0.228"
tokio = "1.47.1"
toml = "0.9.7"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
tracing-subscriber = "0.3.20"
tracing-web = "0.1.3"
url = "2.5.4"
wasm-bindgen = "0.2.99"
web-sys = "0.3.76"
url = "2.5.7"
wasm-bindgen = "0.2.104"
web-sys = "0.3.81"
zutil-app-error = { git = "ssh://github.com/Zenithsiz/zutil", rev = "978fa5df733d59fc691812ce2fa6072bf901dc7f" }

View File

@ -1,7 +1,7 @@
[package]
name = "homepage-backend"
version = "0.1.0"
edition = "2021"
edition = "2024"
authors = { workspace = true }
description = "Homepage backend"
license-file = { workspace = true }

View File

@ -1,7 +1,7 @@
[package]
name = "homepage-frontend"
version = "0.1.0"
edition = "2021"
edition = "2024"
[dependencies]

View File

@ -1,7 +1,7 @@
[package]
name = "homepage"
version = "0.1.0"
edition = "2021"
edition = "2024"
[dependencies]