add: schema, add user but no middleware

This commit is contained in:
2025-05-11 20:16:42 -07:00
parent a68ffc4bb7
commit 66d8144a03
8 changed files with 198 additions and 10 deletions

View File

@@ -17,6 +17,13 @@ tokio = { version = "1", features = ["rt-multi-thread"], optional = true }
wasm-bindgen = { version = "=0.2.100", optional = true }
serde = { version = "1.0.219", features = ["derive"] }
tokio-postgres = { version = "0.7.13", optional = true }
clap = { version = "4.5.37", features = ["derive"], optional = true }
anyhow = { version = "1.0.98", optional = true }
log = { version = "0.4.27", optional = true }
env_logger = { version = "0.11.8", optional = true }
rand = { version = "0.9.1", optional = true}
[features]
hydrate = [
"leptos/hydrate",
@@ -27,10 +34,22 @@ ssr = [
"dep:axum",
"dep:tokio",
"dep:leptos_axum",
"dep:tokio-postgres",
"dep:clap",
"dep:anyhow",
"dep:log",
"dep:env_logger",
"dep:rand",
"leptos/ssr",
"leptos_meta/ssr",
"leptos_router/ssr",
]
env_logger = ["dep:env_logger"]
log = ["dep:log"]
anyhow = ["dep:anyhow"]
clap = ["dep:clap"]
tokio-postgres = ["dep:tokio-postgres"]
rand = ["dep:rand"]
# Defines a size-optimized profile for the WASM bundle in release mode
[profile.wasm-release]