cch23-8bit/Cargo.toml

26 lines
974 B
TOML
Raw Normal View History

2023-12-01 12:59:39 +00:00
[package]
name = "cch23-8bit"
version = "0.1.0"
edition = "2021"
[dependencies]
2023-12-14 16:44:15 +00:00
askama = { version = "0.12.1", features = ["with-axum"] }
askama_axum = "0.4.0"
2023-12-11 20:12:24 +00:00
axum = { version = "0.7.2", features = ["macros", "multipart"] }
2023-12-07 15:43:03 +00:00
axum-extra = { version = "0.9.0", features = ["typed-header"] }
base64 = "0.21.5"
2023-12-12 18:06:21 +00:00
chrono = { version = "0.4.31", default-features = false, features = ["std"] }
2023-12-11 20:12:24 +00:00
image = "0.24.7"
2023-12-08 15:12:56 +00:00
reqwest = { version = "0.11.22", features = ["json"] }
2023-12-04 17:12:08 +00:00
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
2023-12-07 15:42:34 +00:00
shuttle-axum = { version = "0.35.0", default-features = false, features = ["axum-0-7"] }
shuttle-runtime = "0.35.0"
2023-12-13 18:54:26 +00:00
shuttle-shared-db = { version = "0.35.1", features = ["postgres"] }
sqlx = { version = "0.7.3", features = ["postgres", "runtime-tokio-native-tls"] }
2023-12-01 15:44:01 +00:00
tokio = "1.34.0"
2023-12-13 18:57:47 +00:00
tower-http = { version = "0.5.0", features = ["fs","trace"] }
2023-12-01 12:59:39 +00:00
tracing = "0.1.40"
2023-12-12 18:06:21 +00:00
ulid = { version = "1.1.0", features = ["uuid", "serde"] }
uuid = "1.6.1"