mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-06 03:06:04 +00:00
* chore(main): release 0.13.5 * chore: update Cargo.lock Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> --------- Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> 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>
65 lines
1.8 KiB
TOML
65 lines
1.8 KiB
TOML
[package]
|
|
name = "revolt-autumn"
|
|
version = "0.13.5"
|
|
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 }
|
|
lcms2 = { 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"] }
|
|
url-escape = { workspace = true }
|
|
# 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"] }
|