AppFlowy-Cloud/admin_frontend/Cargo.toml

30 lines
945 B
TOML

[package]
name = "admin_frontend"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# local dependencies
gotrue = { path = "../libs/gotrue" }
gotrue-entity = { path = "../libs/gotrue-entity" }
anyhow = "1.0.79"
axum = {version = "0.7", features = ["json"]}
tokio = { version = "1.35.1", features = ["rt-multi-thread", "macros"] }
askama = "0.12.1"
axum-extra = { version = "0.9.2", features = ["cookie"] }
serde.workspace = true
serde_json.workspace = true
redis = { version = "0.23.3", features = [ "aio", "tokio-comp", "connection-manager"] }
uuid = { version = "1.6.1", features = ["v4"] }
dotenv = "0.15.0"
reqwest = "0.11.23"
tower-service = "0.3.2"
tower-http = { version = "0.5", features = ["cors", "fs"] }
tower = "0.4.13"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
jwt = "0.16.0"