Make the GUI a library to support multiple platforms

This commit is contained in:
traxys 2023-08-07 17:27:11 +02:00
parent d3f89a8757
commit 0d900024cb
24 changed files with 76 additions and 39 deletions

24
gui/Cargo.toml Normal file
View file

@ -0,0 +1,24 @@
[package]
name = "regalade_gui"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ammonia = "3.3.0"
anyhow = "1.0.71"
api = { version = "0.1.0", path = "../api" }
dioxus = "0.4.0"
dioxus-router = { version = "0.4.1", features = ["web"] }
dioxus-web = "0.4.0"
gloo-net = { version = "0.3.0", features = ["json"] }
gloo-storage = "0.2.2"
gloo-utils = "0.1.7"
itertools = "0.11.0"
log = "0.4.19"
pulldown-cmark = "0.9.3"
serde = { version = "1.0.164", features = ["derive"] }
urlencoding = "2.1.3"
uuid = "1.4.0"
wasm-bindgen = "0.2.87"