regalade/Cargo.toml

33 lines
900 B
TOML

[package]
name = "regalade"
version = "0.1.0"
authors = ["traxys <quentin@familleboyer.net>"]
edition = "2021"
[workspace]
members = [".", "api", "gui", "migration", "web"]
[dependencies]
anyhow = "1.0.71"
axum = { version = "0.6.18", features = ["headers"] }
base64 = "0.21.0"
jwt-simple = "0.11.5"
serde = { version = "1.0.163", features = ["derive"] }
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
api = { path = "./api" }
migration = { path = "./migration" }
thiserror = "1.0.40"
tower-http = { version = "0.4.0", features = ["cors", "fs"] }
sha2 = "0.10"
uuid = { version = "1.3", features = ["v4"] }
sea-query = "0.28"
openidconnect = "3.3.0"
envious = "0.2.2"
parking_lot = "0.12.1"
urlencoding = "2.1.3"
[dependencies.sea-orm]
version = "0.11"
features = ["runtime-tokio-rustls", "sqlx-postgres", "sqlx-sqlite"]