31 lines
1007 B
TOML
31 lines
1007 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}
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
manganis = "0.2.2"
|
|
|
|
# Debug
|
|
tracing = "0.1.40"
|
|
dioxus-logger = "0.5.0"
|
|
|
|
[features]
|
|
default = []
|
|
server = ["dioxus/axum", "axum", "axum-extra", "surrealdb", "tokio", "argon2" ]
|
|
web = ["dioxus/web"]
|