initial working version

This commit is contained in:
Falko Zurell 2025-01-17 15:25:44 +01:00
commit c0d428297e
3 changed files with 102 additions and 0 deletions

10
Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "pixelfed_batch_uploader"
version = "0.1.0"
edition = "2021"
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["blocking", "json", "multipart"] }
tokio = { version = "1", features = ["full"] }