just add data loader here
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
This commit is contained in:
parent
04ae29eb27
commit
55df6bdb16
23 changed files with 4097 additions and 1 deletions
19
data_loader/Cargo.toml
Normal file
19
data_loader/Cargo.toml
Normal 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" ] }
|
||||
Loading…
Add table
Add a link
Reference in a new issue