Initial commit

This commit is contained in:
2026-01-04 04:15:11 -05:00
commit 0590fe6a37
16 changed files with 1528 additions and 0 deletions

17
Cargo.toml Normal file
View File

@@ -0,0 +1,17 @@
[package]
name = "hive"
version = "0.1.0"
edition = "2024"
[dependencies]
axum = {version = "0.8.3", features = ["multipart"]}
base64 = "0.22.1"
chrono = "0.4.42"
deadpool-diesel = { version = "0.6.1", features = ["sqlite"] }
diesel = { version = "2.2.0", features = ["sqlite", "returning_clauses_for_sqlite_3_35", "chrono"] }
dotenv = "0.15.0"
flate2 = "1.1.5"
tar = "0.4.44"
tempfile = "3.23.0"
tokio = { version = "1.43.0", features = ["full"] }
tower-http = { version = "0.6.7", features = ["fs"] }