just add data loader here
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled

This commit is contained in:
Nicholas Orlowsky 2025-09-12 19:34:35 -04:00
parent 04ae29eb27
commit 55df6bdb16
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
23 changed files with 4097 additions and 1 deletions

19
data_loader/Cargo.toml Normal file
View file

@ -0,0 +1,19 @@
[package]
name = "data_loader"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
dotenv = "0.15.0"
serde = { version = "1.0.219", features = [ "derive" ] }
serde-map-to-array = "1.1.1"
serde_json = "1.0.140"
serde_repr = "0.1.20"
sqlx = { version = "0.8", features = [ "runtime-tokio", "postgres" ] }
thiserror = "2.0.12"
tokio = { version = "1.44.2", features = [ "full" ] }
libseptastic = { path = "../libseptastic/" }
env_logger = "0.11.8"
log = "0.4.27"
reqwest = { version = "0.12.22", features = [ "json", "blocking" ] }