🚀 Init public commit

This commit is contained in:
Markus Scully 2025-07-27 00:42:40 +03:00
commit 62fbf6d17c
Signed by: mascully
GPG key ID: 93CA5814B698101C
42 changed files with 7433 additions and 0 deletions

27
crates/server/Cargo.toml Normal file
View file

@ -0,0 +1,27 @@
[package]
name = "mascully_website_server"
version.workspace = true
edition.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
mascully_website_app = { path = "../app", default-features = false, features = [
"ssr",
] }
leptos = { workspace = true, features = ["ssr"] }
leptos_meta.workspace = true
leptos_router.workspace = true
leptos_dom.workspace = true
leptos_axum.workspace = true
gloo-net.workspace = true
log.workspace = true
futures.workspace = true
simple_logger.workspace = true
serde_json.workspace = true
reqwest.workspace = true
dotenvy.workspace = true
axum.workspace = true
tokio.workspace = true
tower.workspace = true
tower-http.workspace = true