mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-06 03:06:04 +00:00
* chore: start moving all deps to workspace deps
Signed-off-by: Zomatree <me@zomatree.live>
* chore: migrate all deps to workspace deps
Signed-off-by: Zomatree <me@zomatree.live>
* chore: add more dep groups
Signed-off-by: Zomatree <me@zomatree.live>
* fix: add migration to update existing files to be animated (#705)
* fix: add migration to update existing files to be animated
Signed-off-by: Zomatree <me@zomatree.live>
* Revert "fix: add migration to update existing files to be animated"
This reverts commit 4e1f1c116c.
Signed-off-by: Zomatree <me@zomatree.live>
* fix: calculate animated for existing files when fetched
Signed-off-by: Zomatree <me@zomatree.live>
---------
Signed-off-by: Zomatree <me@zomatree.live>
* fix: mise start + missing docker image (#564)
* fix: mise start + missing docker image
Signed-off-by: Damocles078 <hellodamocles078@gmail.com>
* fix: bump livekit version
Signed-off-by: Damocles <106018783+Damocles078@users.noreply.github.com>
---------
Signed-off-by: Damocles078 <hellodamocles078@gmail.com>
Signed-off-by: Tom <iamtomahawkx@gmail.com>
Signed-off-by: Damocles <106018783+Damocles078@users.noreply.github.com>
Co-authored-by: Tom <iamtomahawkx@gmail.com>
* docs: update donation link (#709)
Signed-off-by: Zomatree <me@zomatree.live>
* fix: remove usage of deprecated functions
Signed-off-by: Zomatree <me@zomatree.live>
---------
Signed-off-by: Zomatree <me@zomatree.live>
Signed-off-by: Damocles078 <hellodamocles078@gmail.com>
Signed-off-by: Tom <iamtomahawkx@gmail.com>
Signed-off-by: Damocles <106018783+Damocles078@users.noreply.github.com>
Co-authored-by: Damocles <106018783+Damocles078@users.noreply.github.com>
Co-authored-by: Tom <iamtomahawkx@gmail.com>
Co-authored-by: Paul Makles <me@insrt.uk>
64 lines
1.7 KiB
TOML
64 lines
1.7 KiB
TOML
[package]
|
|
name = "revolt-autumn"
|
|
version = "0.12.1"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
# ID generation
|
|
ulid = { workspace = true }
|
|
nanoid = { workspace = true }
|
|
|
|
# Media processing
|
|
webp = { workspace = true }
|
|
sha2 = { workspace = true }
|
|
jxl-oxide = { workspace = true }
|
|
kamadak-exif = { workspace = true }
|
|
# revolt_little_exif = "0.5.1"
|
|
image = { workspace = true }
|
|
thumbhash = { workspace = true }
|
|
|
|
# File processing
|
|
revolt_clamav-client = { workspace = true }
|
|
simdutf8 = { workspace = true, features = ["aarch64_neon"] }
|
|
|
|
# Content type processing
|
|
infer = { workspace = true }
|
|
ffprobe = { workspace = true }
|
|
imagesize = { workspace = true }
|
|
|
|
# Utility
|
|
lazy_static = { workspace = true }
|
|
moka = { workspace = true, features = ["future"] }
|
|
|
|
# Serialisation
|
|
strum_macros = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
# Async runtime
|
|
tokio = { workspace = true, features = ["full"] }
|
|
|
|
# Logging
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|
|
|
|
# Core crates
|
|
revolt-files = { workspace = true }
|
|
revolt-config = { workspace = true }
|
|
revolt-database = { workspace = true, features = ["axum-impl"] }
|
|
revolt-result = { workspace = true, features = ["utoipa", "axum"] }
|
|
revolt-ratelimits = { workspace = true, features = ["axum"] }
|
|
|
|
# Axum / web server
|
|
tempfile = { workspace = true }
|
|
axum-macros = { workspace = true }
|
|
axum_typed_multipart = { workspace = true }
|
|
axum = { workspace = true, features = ["multipart"] }
|
|
tower-http = { workspace = true, features = ["cors"] }
|
|
|
|
# OpenAPI & documentation generation
|
|
utoipa-scalar = { workspace = true, features = ["axum"] }
|
|
utoipa = { workspace = true, features = ["axum_extras", "ulid"] }
|