2025-07-08 14:37:03 -07:00
|
|
|
[package]
|
|
|
|
|
name = "interim-server"
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
version.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
askama = { version = "0.14.0", features = ["serde_json", "urlencode"] }
|
|
|
|
|
async-session = "3.0.0"
|
|
|
|
|
axum = { version = "0.8.1", features = ["macros", "ws"] }
|
|
|
|
|
axum-extra = { version = "0.10.0", features = ["cookie", "form", "typed-header"] }
|
|
|
|
|
chrono = { workspace = true }
|
|
|
|
|
clap = { version = "4.5.31", features = ["derive"] }
|
|
|
|
|
config = "0.14.1"
|
|
|
|
|
derive_builder = { workspace = true }
|
|
|
|
|
dotenvy = "0.15.7"
|
|
|
|
|
futures = { workspace = true }
|
2025-08-10 14:32:15 -07:00
|
|
|
headers = "0.4.1"
|
2025-07-08 14:37:03 -07:00
|
|
|
interim-models = { workspace = true }
|
2025-10-07 06:23:50 +00:00
|
|
|
interim-namegen = { workspace = true }
|
2025-07-08 14:37:03 -07:00
|
|
|
interim-pgtypes = { workspace = true }
|
2025-10-01 22:37:11 -07:00
|
|
|
markdown = "1.0.0"
|
2025-07-08 14:37:03 -07:00
|
|
|
oauth2 = "4.4.2"
|
|
|
|
|
percent-encoding = "2.3.1"
|
|
|
|
|
rand = { workspace = true }
|
|
|
|
|
regex = { workspace = true }
|
|
|
|
|
reqwest = { workspace = true }
|
2025-10-01 22:37:11 -07:00
|
|
|
scraper = "0.24.0"
|
2025-07-08 14:37:03 -07:00
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true}
|
|
|
|
|
sqlx = { workspace = true }
|
2025-10-01 22:36:19 -07:00
|
|
|
strum = { workspace = true }
|
2025-07-08 14:37:03 -07:00
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
tower = "0.5.2"
|
|
|
|
|
tower-http = { version = "0.6.2", features = ["compression-gzip", "fs", "normalize-path", "set-header", "trace"] }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
tracing-subscriber = { version = "0.3.19", features = ["chrono", "env-filter"] }
|
2025-10-07 06:23:50 +00:00
|
|
|
url = { workspace = true }
|
2025-07-08 14:37:03 -07:00
|
|
|
uuid = { workspace = true }
|
|
|
|
|
validator = { workspace = true }
|