wrbapp/Cargo.toml

30 lines
835 B
TOML
Raw Normal View History

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-07 20:02:24 +02:00
tokio = { version = "1.38", features = ["macros", "rt-multi-thread"], optional = true }
axum = { version = "0.7", optional = true }
once_cell = { version = "1.19", optional = true }
surrealdb = { version = "2.0", features = ["kv-rocksdb"], optional = true }
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
tracing = "0.1"
dioxus-logger = "0.5"
manganis = "0.2"
2024-07-17 21:33:39 +02:00
[features]
default = []
2024-07-19 17:50:50 +02:00
server = [ "dioxus/axum", "tokio", "axum", "once_cell", "surrealdb", "csv" ]
2024-07-17 21:33:39 +02:00
web = ["dioxus/web"]