mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Some checks failed
Build and push Docker image / .net docker build (push) Has been cancelled
.net checks / run .net tests (push) Has been cancelled
.net checks / dotnet-format (push) Has been cancelled
Build and push Rust service Docker images / rust docker build (push) Has been cancelled
rust checks / cargo fmt (push) Has been cancelled
29 lines
773 B
TOML
29 lines
773 B
TOML
[package]
|
|
name = "avatars"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "avatar_cleanup"
|
|
path = "src/cleanup.rs"
|
|
|
|
[dependencies]
|
|
libpk = { path = "../libpk" }
|
|
anyhow = { workspace = true }
|
|
axum = { workspace = true, features = ["multipart"]}
|
|
futures = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
serde = { workspace = true }
|
|
sqlx = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
uuid = { workspace = true }
|
|
|
|
data-encoding = "2.5.0"
|
|
gif = "0.13.1"
|
|
image = { version = "0.25.6", default-features = false, features = ["gif", "jpeg", "png", "webp", "tiff"] }
|
|
form_urlencoded = "1.2.1"
|
|
rust-s3 = { version = "0.33.0", default-features = false, features = ["tokio-rustls-tls"] }
|
|
sha2 = "0.10.8"
|
|
thiserror = "1.0.56"
|
|
webp = "0.3.1"
|