26 lines
712 B
TOML
26 lines
712 B
TOML
[package]
|
|
name = "como_bff"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = "0.5.13"
|
|
axum-extra = { version = "*", features = ["cookie", "cookie-private"] }
|
|
axum-sessions = { version = "*" }
|
|
tokio = { version = "1.20.1", features = ["full"] }
|
|
uuid = { version = "1.1.2", features = ["v4", "fast-rng"] }
|
|
sqlx = { version = "0.6", features = [
|
|
"runtime-tokio-rustls",
|
|
"postgres",
|
|
"migrate",
|
|
"uuid",
|
|
"offline",
|
|
] }
|
|
anyhow = "1.0.60"
|
|
dotenv = "0.15.0"
|
|
tracing = "0.1.36"
|
|
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
|
|
tower-http = { version = "0.3.4", features = ["full"] }
|