xvmcmm/Cargo.toml

31 lines
1007 B
TOML
Raw Normal View History

2024-06-04 13:41:33 +02:00
[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 }
2024-06-05 14:14:57 +02:00
axum-extra = { version = "0.9.3", features = [ "cookie" ], optional = true}
2024-06-06 11:58:01 +02:00
reqwest = { version = "0.12", features = ["json"] }
2024-06-07 14:04:19 +02:00
manganis = "0.2.2"
2024-06-04 13:41:33 +02:00
# Debug
tracing = "0.1.40"
dioxus-logger = "0.5.0"
[features]
default = []
2024-06-05 14:14:57 +02:00
server = ["dioxus/axum", "axum", "axum-extra", "surrealdb", "tokio", "argon2" ]
2024-06-04 13:41:33 +02:00
web = ["dioxus/web"]