mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 21:47:02 +00:00
Co-authored-by: stoat-release[bot] <245062572+stoat-release[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
49 lines
1.1 KiB
TOML
49 lines
1.1 KiB
TOML
[package]
|
|
name = "revolt-files"
|
|
version = "0.13.0"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
authors = ["Paul Makles <me@insrt.uk>"]
|
|
description = "Revolt Backend: S3 and encryption subroutines"
|
|
repository = "https://github.com/stoatchat/stoatchat"
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
|
|
tracing = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
|
|
ffprobe = { workspace = true }
|
|
imagesize = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
|
|
base64 = { workspace = true }
|
|
aes-gcm = { workspace = true }
|
|
typenum = { workspace = true }
|
|
|
|
aws-config = { workspace = true }
|
|
aws-sdk-s3 = { workspace = true, features = ["behavior-version-latest"] }
|
|
|
|
revolt-config = { workspace = true, features = [
|
|
"report-macros",
|
|
] }
|
|
revolt-result = { workspace = true }
|
|
|
|
# image processing
|
|
jxl-oxide = { workspace = true, features = ["image"] }
|
|
image = { workspace = true }
|
|
|
|
# svg rendering
|
|
usvg = { workspace = true }
|
|
resvg = { workspace = true }
|
|
tiny-skia = { workspace = true }
|
|
|
|
# encoding
|
|
webp = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
uuid = { workspace = true, features = ["v4"] }
|