Skip to content

Instantly share code, notes, and snippets.

View DogeDark's full-sized avatar

Miles Murgaw DogeDark

View GitHub Profile
@DogeDark
DogeDark / Cargo.toml
Created March 14, 2024 23:22
TUI Breaks With Router
[package]
name = "tui"
version = "0.1.0"
authors = ["Miles"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
dioxus = { git = "https://github.com/DioxusLabs/dioxus", features = ["tui", "router"] }
@DogeDark
DogeDark / Cargo.toml
Last active March 14, 2024 04:47
Fullstack (Router?) 0.5 Error
[package]
name = "n-fs2"
version = "0.1.0"
authors = ["Miles"]
edition = "2021"
[dependencies]
serde = { version = "1.0.197", features = ["derive"] }
dioxus = { version = "0.5.0-alpha.0", features = ["fullstack", "router"] }
@DogeDark
DogeDark / Cargo.toml
Created December 20, 2023 01:36
Dioxus Router bug with liveview
[package]
name = "liveview-bug"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = { version = "0.6.16", features = ["ws"] }
dioxus = "0.4.3"