14 lines
358 B
TOML
14 lines
358 B
TOML
[package]
|
|
name = "pixelfed_batch_uploader"
|
|
version = "1.0.2"
|
|
edition = "2021"
|
|
|
|
[build]
|
|
rustflags = ["--out-dir", "target/output"]
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
reqwest = { version = "0.11", features = ["blocking", "json", "multipart"] }
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
base64 = "0.21"
|