17 lines
410 B
TOML
17 lines
410 B
TOML
[package]
|
|
name = "mastodon-image-uploader-bot"
|
|
version = "0.1.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"] }
|
|
tokio-test = "0.4.2"
|
|
reqwest = "0.11.14"
|
|
serde = "1.0.171"
|
|
toml = "0.7.1"
|
|
|
|
[dependencies.mastodon-async]
|
|
version = "1.0"
|
|
features = ["toml", "mt"] |