insta-import-pixelfed/Cargo.toml

18 lines
462 B
TOML
Raw Permalink Normal View History

2025-01-17 15:25:44 +01:00
[package]
name = "pixelfed_batch_uploader"
2025-03-04 23:41:55 +01:00
version = "1.2.0"
2025-01-17 15:25:44 +01:00
edition = "2021"
[build]
rustflags = ["--out-dir", "target/output"]
2025-01-17 15:25:44 +01:00
[dependencies]
2025-03-03 22:41:36 +01:00
serde = { version = "1.0.218", features = ["derive"] }
serde_json = "1.0.140"
reqwest = { version = "0.12", features = ["blocking", "json", "multipart", "stream"] }
tokio = { version = "1.0", features = ["full"] }
2025-03-03 22:41:36 +01:00
base64 = "0.22.1"
clap = { version = "4.5.3", features = ["derive"] }
2025-03-04 23:41:55 +01:00
log = "0.4"
env_logger = "0.11"