septastic/data_loader/Cargo.toml
Nicholas Orlowsky 55df6bdb16
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
just add data loader here
2025-09-12 19:34:35 -04:00

19 lines
546 B
TOML

[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" ] }