2025-05-02 23:48:54 -07:00
|
|
|
[package]
|
|
|
|
|
name = "interim"
|
|
|
|
|
version = "0.0.1"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[workspace]
|
2025-05-26 22:08:21 -07:00
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
|
|
[workspace.dependencies]
|
|
|
|
|
anyhow = { version = "1.0.91", features = ["backtrace"] }
|
|
|
|
|
chrono = { version = "0.4.41", features = ["serde"] }
|
|
|
|
|
reqwest = { version = "0.12.8", features = ["json"] }
|
|
|
|
|
serde = { version = "1.0.213", features = ["derive"] }
|
|
|
|
|
sqlx = { version = "0.8.6", features = ["runtime-tokio", "tls-rustls-ring-native-roots", "postgres", "derive", "uuid", "chrono", "json", "macros"] }
|
|
|
|
|
uuid = { version = "1.11.0", features = ["serde", "v4", "v7"] }
|
|
|
|
|
tokio = { version = "1.42.0", features = ["full"] }
|
2025-05-02 23:48:54 -07:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-05-26 22:08:21 -07:00
|
|
|
anyhow = { workspace = true }
|
2025-05-13 00:02:33 -07:00
|
|
|
askama = { version = "0.14.0", features = ["urlencode"] }
|
2025-05-02 23:48:54 -07:00
|
|
|
async-session = "3.0.0"
|
|
|
|
|
axum = { version = "0.8.1", features = ["macros"] }
|
|
|
|
|
axum-extra = { version = "0.10.0", features = ["cookie", "form", "typed-header"] }
|
2025-05-26 22:08:21 -07:00
|
|
|
chrono = { workspace = true }
|
2025-05-02 23:48:54 -07:00
|
|
|
clap = { version = "4.5.31", features = ["derive"] }
|
|
|
|
|
config = "0.14.1"
|
|
|
|
|
derive_builder = "0.20.2"
|
|
|
|
|
dotenvy = "0.15.7"
|
|
|
|
|
futures = "0.3.31"
|
2025-05-26 22:08:21 -07:00
|
|
|
nom = "8.0.0"
|
2025-05-02 23:48:54 -07:00
|
|
|
oauth2 = "4.4.2"
|
|
|
|
|
percent-encoding = "2.3.1"
|
|
|
|
|
rand = "0.8.5"
|
2025-05-26 22:08:21 -07:00
|
|
|
reqwest = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
2025-05-02 23:48:54 -07:00
|
|
|
serde_json = "1.0.132"
|
2025-05-26 22:08:21 -07:00
|
|
|
sqlx = { workspace = true }
|
|
|
|
|
thiserror = "2.0.12"
|
|
|
|
|
tokio = { workspace = true }
|
2025-05-02 23:48:54 -07:00
|
|
|
tower = "0.5.2"
|
|
|
|
|
tower-http = { version = "0.6.2", features = ["compression-gzip", "fs", "normalize-path", "set-header", "trace"] }
|
|
|
|
|
tracing = "0.1.40"
|
|
|
|
|
tracing-subscriber = { version = "0.3.19", features = ["chrono", "env-filter"] }
|
2025-05-26 22:08:21 -07:00
|
|
|
uuid = { workspace = true }
|
2025-05-02 23:48:54 -07:00
|
|
|
validator = { version = "0.20.0", features = ["derive"] }
|