archiver wip

This commit is contained in:
Robin Appelman 2025-04-11 20:20:51 +02:00
commit a660675932
13 changed files with 3466 additions and 0 deletions

18
archiver/Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
[package]
name = "archiver"
version = "0.1.0"
edition = "2021"
[dependencies]
ugc-scraper-types = "0.1.2"
reqwest = { version = "0.12.15", features = ["json"] }
clap = { version = "4.5.35", features = ["derive"] }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
serde = { version = "1.0.219", features = ["derive"] }
toml = "0.8.20"
secretfile = "0.1.0"
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }
sqlx = { version = "0.8.3", features = ["postgres", "runtime-tokio"] }
thiserror = "2.0.12"
main_error = "0.1.2"