wrbapp/Cargo.toml
2024-07-18 19:03:13 +02:00

28 lines
798 B
TOML

[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"] }
tokio = { version = "1.38.1", features = ["macros", "rt-multi-thread"], optional = true }
axum = { version = "0.7.5", optional = true }
once_cell = { version = "1.19.0", optional = true }
surrealdb = { version = "1.5.4", features = ["kv-speedb"], optional = true }
# Debug
tracing = "0.1.40"
dioxus-logger = "0.5.0"
manganis = "0.2.2"
[features]
default = []
server = [ "dioxus/axum", "tokio", "axum", "once_cell", "surrealdb" ]
web = ["dioxus/web"]