cch23-8bit/Cargo.toml

38 lines
1.2 KiB
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-20 00:36:23 +00:00
axum = { version = "0.7.2", features = ["macros", "multipart", "ws"] }
2023-12-07 15:43:03 +00:00
axum-extra = { version = "0.9.0", features = ["typed-header"] }
base64 = "0.21.5"
bytes = "1.5.0"
2023-12-12 18:06:21 +00:00
chrono = { version = "0.4.31", default-features = false, features = ["std"] }
2023-12-21 17:18:00 +00:00
country-boundaries = "1.2.0"
2023-12-20 00:36:23 +00:00
futures = "0.3.29"
2023-12-11 20:12:24 +00:00
image = "0.24.7"
2023-12-21 17:18:00 +00:00
isocountry = "0.3.2"
2023-12-22 14:33:53 +00:00
multimap = { version = "0.9.1", default-features = false }
pathfinding = "4.8.0"
2023-12-21 17:18:00 +00:00
radians = "0.3.1"
2023-12-15 21:24:17 +00:00
regex = "1.10.2"
2023-12-08 15:12:56 +00:00
reqwest = { version = "0.11.22", features = ["json"] }
2023-12-21 17:18:00 +00:00
s2 = "0.0.12"
2023-12-04 17:12:08 +00:00
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
2023-12-15 21:24:17 +00:00
sha256 = "1.4.0"
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"] }
tar = "0.4.40"
tempfile = "3.8.1"
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"