AppFlowy-Cloud/admin_frontend/Cargo.toml

30 lines
942 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.75"
axum = {version = "0.6.20", features = ["json"]}
tokio = { version = "1.32.0", features = ["rt-multi-thread", "macros"] }
askama = "0.12.1"
axum-extra = { version = "0.8.0", features = ["cookie"] }
serde.workspace = true
serde_json.workspace = true
redis = { version = "0.23.3", features = [ "aio", "tokio-comp", "connection-manager"] }
uuid = { version = "1.4.1", features = ["v4"] }
dotenv = "0.15.0"
reqwest = "0.11.22"
tower-service = "0.3.2"
tower-http = { version = "0.4.4", features = ["cors", "fs"] }
tower = "0.4.13"
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
jwt = "0.16.0"