···6677[features]
88default = ["web"]
99-# The feature that are only required for the web = ["dioxus/web"] build target should be optional and only enabled in the web = ["dioxus/web"] feature
1010-web = ["dioxus/web", "chrono/wasmbind"]
1111-# The feature that are only required for the desktop = ["dioxus/desktop"] build target should be optional and only enabled in the desktop = ["dioxus/desktop"] feature
99+# Fullstack mode with SSR and server functions
1010+fullstack-server = ["dioxus/fullstack"]
1111+1212+web = ["dioxus/web"]
1213desktop = ["dioxus/desktop"]
1313-# The feature that are only required for the mobile = ["dioxus/mobile"] build target should be optional and only enabled in the mobile = ["dioxus/mobile"] feature
1414mobile = ["dioxus/mobile"]
1515-# The feature that are only required for the server = ["dioxus/server"] build target should be optional and only enabled in the server = ["dioxus/server"] feature
1616-server = ["dioxus/server", "dep:jacquard-axum", "dep:axum"]
1515+server = [ "dioxus/server", "dep:jacquard-axum", "dep:axum"]
1616+1717+1818+17191820[dependencies]
1921dashmap = "6.1.0"
2020-dioxus = { version = "0.7.0", features = ["router", "fullstack"] }
2222+2323+dioxus = { version = "0.7.0", features = ["router"] }
2424+#dioxus = { version = "0.7.0", features = ["router", "fullstack"] }
2125weaver-common = { path = "../weaver-common" }
2226jacquard = { workspace = true, features = ["streaming"] }
2327jacquard-axum = { workspace = true, optional = true }
···374138423943[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
4040-sqlite-wasm-rs = { version = "0.4", features = ["relaxed-idb"] }
4141-4242-4343-4444-[target.'cfg(target_arch = "wasm32")'.dependencies]
4444+sqlite-wasm-rs = { version = "0.4", default-features = false, features = ["precompiled", "relaxed-idb"] }
4545time = { version = "0.3", features = ["wasm-bindgen"] }
4646console_error_panic_hook = "0.1"
4747mini-moka = { git = "https://github.com/moka-rs/mini-moka", rev = "da864e849f5d034f32e02197fee9bb5d5af36d3d", features = ["js"] }
4848+chrono = { version = "0.4", features = ["wasmbind"] }
4949+wasm-bindgen = "0.2"
5050+wasm-bindgen-futures = "0.4"
5151+web-sys = { version = "0.3", features = ["ServiceWorkerContainer", "ServiceWorker", "ServiceWorkerRegistration", "RegistrationOptions", "Window", "Navigator", "MessageEvent", "console"] }
5252+js-sys = "0.3"