alot of progress

This commit is contained in:
2025-10-29 18:49:52 -07:00
parent 989561deef
commit 11ad1d9652
4 changed files with 493 additions and 321 deletions

View File

@@ -7,25 +7,22 @@ authors = ["Rivulet <cadenream@cadencoaster.com>"]
[lib]
crate-type = ["cdylib"]
# (Wrangler will ignore these; fine to keep or remove)
[package.metadata.wasm-pack]
target = "web"
out-dir = "build"
out-name = "index"
[dependencies]
# Cloudflare Workers (HTTP + Axum adapter)
worker = { version = "0.6", features = ["http", "axum"] }
worker-macros = { version = "0.6", features = ["http"] }
# Axum *without* tokio/hyper; we don't use its WS, so don't enable it.
worker = { version = "0.6", features = ['http', 'axum'] }
worker-macros = { version = "0.6", features = ['http'] }
axum = { version = "0.8", default-features = false, features = ["form", "macros"] }
tower-service = "0.3.3"
maud = { version = "0.27.0", default-features = false }
rand = { version = "0.9.2",default-features = false, features = ["thread_rng"] }
serde = { version = "1.0.228", default-features = false, features = ["derive"] }
tower-cookies = "0.11.0"
axum-extra = { version = "0.10.3", features = ["cookie"] }
uuid = { version = "1.18", features = ["v4", "v7", "v5", "js"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.3", features = ["wasm_js"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
urlencoding = "2.1.3"
futures-util = "0.3.31"