28 lines
1.1 KiB
TOML
28 lines
1.1 KiB
TOML
[package]
|
|
name = "cooked"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix = "0.13.5"
|
|
actix-files = { version = "0.6.6", features = ["experimental-io-uring"] }
|
|
actix-web = { version = "4.9.0", features = ["compress-brotli", "cookies", "experimental-io-uring", "macros", "rustls", "secure-cookies", "unicode"], default-features = false }
|
|
askama = { version = "0.12.1", features = ["with-actix-web", "serde_json", "mime_guess", "markdown", "comrak", "mime"] }
|
|
askama_actix = "0.14.0"
|
|
redis = { version = "0.27.5", features = ["tokio", "json", "uuid", "tokio-comp", "connection-manager"] }
|
|
sea-orm = { version = "1.1.0", default-features = false, features = ["chrono", "macros", "runtime-actix-rustls", "serde_json", "sqlx-postgres", "with-uuid"] }
|
|
tracing = "0.1.40"
|
|
tracing-subscriber = "0.3.18"
|
|
serde = "1.0.210"
|
|
serde_json = "1.0.132"
|
|
uuid = { version = "1.11.0", features = ["v4", "v8"] }
|
|
migration = { path = "./migration" }
|
|
rswind = "0.0.1-alpha.1"
|
|
rswind_cli = "0.0.1-alpha.1"
|
|
derive_more = { version = "1.0.0", features = ["deref"] }
|
|
chrono = "0.4.38"
|
|
humantime = "2.1.0"
|
|
humantime-serde = "1.1.1"
|
|
|
|
[build-dependencies]
|