20 lines
446 B
TOML
20 lines
446 B
TOML
[package]
|
|
name = "mastodon-image-uploader-bot"
|
|
version = "0.3.0"
|
|
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"
|
|
serde = "1.0.171"
|
|
toml = "0.8.8"
|
|
log = "0.4.19"
|
|
stderrlog = "0.5.4"
|
|
async-std = "1.12.0"
|
|
|
|
[dependencies.mastodon-async]
|
|
version = "1.0"
|
|
features = ["toml", "mt"]
|