Start of template refactor
This commit is contained in:
parent
6bdfe1ad0e
commit
e14c1f0918
8 changed files with 1612 additions and 531 deletions
17
Cargo.toml
17
Cargo.toml
|
|
@ -9,7 +9,7 @@ members = [".", "api", "gui", "migration", "web"]
|
|||
|
||||
[dependencies]
|
||||
anyhow = "1.0.71"
|
||||
axum = { version = "0.6.18", features = ["headers"] }
|
||||
axum = { version = "0.7.2" }
|
||||
base64 = "0.21.0"
|
||||
jwt-simple = "0.11.5"
|
||||
serde = { version = "1.0.163", features = ["derive"] }
|
||||
|
|
@ -19,15 +19,24 @@ tracing-subscriber = "0.3.17"
|
|||
api = { path = "./api" }
|
||||
migration = { path = "./migration" }
|
||||
thiserror = "1.0.40"
|
||||
tower-http = { version = "0.4.0", features = ["cors", "fs"] }
|
||||
tower-http = { version = "0.5.0", features = ["cors", "fs"] }
|
||||
sha2 = "0.10"
|
||||
uuid = { version = "1.3", features = ["v4"] }
|
||||
sea-query = "0.28"
|
||||
sea-query = "0.30"
|
||||
openidconnect = "3.3.0"
|
||||
envious = "0.2.2"
|
||||
parking_lot = "0.12.1"
|
||||
urlencoding = "2.1.3"
|
||||
tower-sessions = { version = "0.8.2", features = [
|
||||
"postgres-store",
|
||||
"deletion-task",
|
||||
] }
|
||||
tower = "0.4.13"
|
||||
time = "0.3.31"
|
||||
maud = { git = "https://github.com/lambda-fairy/maud", version = "0.25.0", features = [
|
||||
"axum",
|
||||
] }
|
||||
|
||||
[dependencies.sea-orm]
|
||||
version = "0.11"
|
||||
version = "0.12"
|
||||
features = ["runtime-tokio-rustls", "sqlx-postgres", "sqlx-sqlite"]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue