bot-mastodon-image-uploader/Cargo.toml

20 lines
446 B
TOML
Raw Normal View History

2023-02-22 18:33:39 +00:00
[package]
name = "mastodon-image-uploader-bot"
2024-02-23 07:17:50 +00:00
version = "1.0.0"
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]
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"
2024-02-17 11:13:39 +00:00
stderrlog = "0.6.0"
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"]