2023-05-19 11:23:44 +02:00
|
|
|
[package]
|
|
|
|
|
name = "regalade"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
authors = ["traxys <quentin@familleboyer.net>"]
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[workspace]
|
2024-12-30 21:19:19 +01:00
|
|
|
members = [".", "api", "migration"]
|
2023-05-19 11:23:44 +02:00
|
|
|
|
|
|
|
|
[dependencies]
|
2024-12-30 21:19:19 +01:00
|
|
|
anyhow = "1.0.95"
|
2024-12-30 22:30:27 +01:00
|
|
|
axum = { version = "0.7.9", features = ["macros"] }
|
|
|
|
|
axum-extra = { version = "0.9", features = ["cookie"] }
|
2024-12-30 21:19:19 +01:00
|
|
|
serde = { version = "1.0.217", features = ["derive"] }
|
2023-05-19 11:23:44 +02:00
|
|
|
tokio = { version = "1", features = ["macros", "rt", "rt-multi-thread"] }
|
2024-12-30 21:19:19 +01:00
|
|
|
tracing = "0.1.41"
|
|
|
|
|
tracing-subscriber = "0.3.19"
|
2023-05-19 11:23:44 +02:00
|
|
|
api = { path = "./api" }
|
2023-05-20 11:39:34 +02:00
|
|
|
migration = { path = "./migration" }
|
2024-12-30 21:19:19 +01:00
|
|
|
thiserror = "2.0.9"
|
|
|
|
|
tower-http = { version = "0.6.2", features = ["cors", "fs"] }
|
2023-05-20 11:39:34 +02:00
|
|
|
sha2 = "0.10"
|
2024-12-30 21:19:19 +01:00
|
|
|
uuid = { version = "1.11", features = ["v4"] }
|
|
|
|
|
sea-query = "0.32"
|
|
|
|
|
openidconnect = "3.5.0"
|
2023-07-25 22:37:42 +02:00
|
|
|
envious = "0.2.2"
|
2024-12-30 21:19:19 +01:00
|
|
|
parking_lot = "0.12.3"
|
2023-07-27 00:06:36 +02:00
|
|
|
urlencoding = "2.1.3"
|
2024-12-30 21:19:19 +01:00
|
|
|
tower-sessions = "0.13.0"
|
|
|
|
|
tower = "0.5.2"
|
|
|
|
|
time = "0.3.37"
|
2024-03-02 15:16:26 +01:00
|
|
|
maud = { version = "0.26.0", features = ["axum"] }
|
2024-12-30 21:19:19 +01:00
|
|
|
pulldown-cmark = "0.12.2"
|
|
|
|
|
ammonia = "4.0.0"
|
|
|
|
|
tower-sessions-sqlx-store = { version = "0.14.2", features = ["postgres"] }
|
2023-05-20 11:39:34 +02:00
|
|
|
|
|
|
|
|
[dependencies.sea-orm]
|
2024-12-30 21:19:19 +01:00
|
|
|
version = "1.1"
|
2023-05-20 11:39:34 +02:00
|
|
|
features = ["runtime-tokio-rustls", "sqlx-postgres", "sqlx-sqlite"]
|