Files
AE_Anons/Cargo.toml

31 lines
894 B
TOML

[package]
name = "ae_anons"
version = "0.1.0"
edition = "2021"
license = "MIT"
license-file = "LICENSE"
authors = ["Your Name <a.barabanov@tvstart.ru>"]
description = "Automated Nexrender job generator from Synology Office spreadsheets"
repository = "https://git.tvstart.ru/lexx/AE_Anons"
readme = "README.md"
keywords = ["nexrender", "after-effects", "synology", "automation"]
categories = ["command-line-utilities", "multimedia"]
[dependencies]
reqwest = { version = "0.12", features = ["json", "multipart", "stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
urlencoding = "2.1"
tokio = { version = "1.0", features = ["full"] }
dotenv = "0.15"
calamine = "0.26"
chrono = "0.4"
regex = "1.11"
futures = "0.3"
anyhow = "1.0"
log = "0.4"
env_logger = "0.11"
[dev-dependencies]
tokio = { version = "1.0", features = ["full", "rt-multi-thread"] }