2023-02-22 18:33:39 +00:00
|
|
|
[package]
|
|
|
|
name = "mastodon-image-uploader-bot"
|
2024-01-26 17:48:40 +00:00
|
|
|
version = "0.3.0"
|
2023-02-22 18:33:39 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
2024-01-26 17:41:44 +00:00
|
|
|
[alias]
|
|
|
|
test = "cargo test -- --test-threads=1"
|
|
|
|
|
2023-02-22 18:33:39 +00:00
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
|
|
|
|
reqwest = "0.11.14"
|
2023-07-14 08:17:36 +00:00
|
|
|
serde = "1.0.171"
|
2024-01-26 17:48:40 +00:00
|
|
|
toml = "0.8.8"
|
2023-07-14 17:04:58 +00:00
|
|
|
log = "0.4.19"
|
|
|
|
stderrlog = "0.5.4"
|
2023-07-19 07:38:49 +00:00
|
|
|
async-std = "1.12.0"
|
2023-02-22 18:33:39 +00:00
|
|
|
|
|
|
|
[dependencies.mastodon-async]
|
|
|
|
version = "1.0"
|
2023-07-19 07:38:49 +00:00
|
|
|
features = ["toml", "mt"]
|