2024-07-17 21:33:39 +02:00
|
|
|
[package]
|
|
|
|
name = "wrbapp"
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["xeovalyte <me+gitea@xeovalyte.dev>"]
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
|
|
|
|
|
|
dioxus = { version = "0.5", features = ["fullstack", "router"] }
|
2024-09-30 17:01:13 +02:00
|
|
|
web-sys = { version = "0.3.70", features = ["Window", "Location"] }
|
2024-07-17 21:33:39 +02:00
|
|
|
|
2024-09-07 20:02:24 +02:00
|
|
|
tokio = { version = "1.38", features = ["macros", "rt-multi-thread"], optional = true }
|
|
|
|
axum = { version = "0.7", optional = true }
|
2024-09-30 17:01:13 +02:00
|
|
|
axum-extra = { version = "0.9", features = ["cookie"], optional = true }
|
|
|
|
time = { version = "0.3", optional = true }
|
2024-09-07 20:02:24 +02:00
|
|
|
once_cell = { version = "1.19", optional = true }
|
2024-10-06 18:52:08 +02:00
|
|
|
surrealdb = { version = "2.0", optional = true }
|
2024-09-30 17:01:13 +02:00
|
|
|
thiserror = { version = "1.0" }
|
2024-07-18 19:03:13 +02:00
|
|
|
|
2024-09-07 20:02:24 +02:00
|
|
|
csv = { version = "1.3", optional = true }
|
2024-07-19 17:50:50 +02:00
|
|
|
|
2024-07-17 21:33:39 +02:00
|
|
|
# Debug
|
2024-07-24 20:42:32 +02:00
|
|
|
tracing = "0.1"
|
|
|
|
dioxus-logger = "0.5"
|
|
|
|
manganis = "0.2"
|
2024-07-17 21:33:39 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|
2024-10-03 12:07:33 +02:00
|
|
|
server = [ "dioxus/axum", "tokio", "axum", "axum-extra", "time", "once_cell", "surrealdb", "csv" ]
|
|
|
|
web = ["dioxus/web"]
|