2023-02-22 18:33:39 +00:00
|
|
|
[package]
|
|
|
|
name = "mastodon-image-uploader-bot"
|
2024-02-23 16:46:54 +00:00
|
|
|
version = "1.0.1"
|
2023-02-22 18:33:39 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2025-01-03 12:38:50 +00:00
|
|
|
tokio = { version = "=1.42.0", features = ["macros", "rt-multi-thread"] }
|
2025-01-06 19:32:53 +00:00
|
|
|
reqwest = { version = "=0.11.27", features = ["json"] }
|
2025-01-03 12:38:50 +00:00
|
|
|
serde = "=1.0.217"
|
|
|
|
toml = "=0.8.19"
|
|
|
|
log = "=0.4.22"
|
|
|
|
stderrlog = "=0.6.0"
|
|
|
|
async-std = "=1.13.0"
|
2023-02-22 18:33:39 +00:00
|
|
|
|
|
|
|
[dependencies.mastodon-async]
|
2025-01-03 12:38:50 +00:00
|
|
|
version = "=1.3.2"
|
2023-07-19 07:38:49 +00:00
|
|
|
features = ["toml", "mt"]
|