image-helper-wordpress/Cargo.toml

16 lines
455 B
TOML
Raw Permalink Normal View History

2024-11-18 21:10:44 +01:00
[package]
2024-11-18 23:09:06 +01:00
name = "image-helper-wordpress"
version = "0.1.2"
2024-11-18 23:10:36 +01:00
edition = "2021"
2024-11-18 23:09:06 +01:00
license = "GPLv3"
authors = ["Falko Zurell <falko@zurell.de>"]
description = "A tool to upload images to WordPress with AI-generated descriptions"
2024-11-18 21:10:44 +01:00
[dependencies]
dirs = "5.0" # or whatever the latest version is
2024-11-18 22:50:48 +01:00
tokio = { version = "1.0", features = ["full"] }
reqwest = { version = "0.11", features = ["json", "multipart"] }
dotenv = "0.15"
2024-11-18 21:10:44 +01:00
serde_json = "1.0"
2024-11-18 22:50:48 +01:00
base64 = "0.21"