xvmcmm/Cargo.toml
2024-06-05 14:14:57 +02:00

29 lines
936 B
TOML

[package]
name = "xvmcmm"
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 = { git = "https://github.com/DioxusLabs/dioxus.git", branch = "v0.5", features = ["fullstack", "router"] }
surrealdb = { version = "1.5.1", features = [ "kv-speedb" ], optional = true }
once_cell = "1.19.0"
tokio = { version = "1.38.0", features = [ "macros", "rt-multi-thread" ], optional = true }
argon2 = { version = "0.5.3", optional = true }
axum = { version = "0.7.5", optional = true }
axum-extra = { version = "0.9.3", features = [ "cookie" ], optional = true}
# Debug
tracing = "0.1.40"
dioxus-logger = "0.5.0"
[features]
default = []
server = ["dioxus/axum", "axum", "axum-extra", "surrealdb", "tokio", "argon2" ]
web = ["dioxus/web"]