mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 05:26:59 +00:00
Co-authored-by: stoat-release[bot] <245062572+stoat-release[bot]@users.noreply.github.com>
50 lines
1.3 KiB
TOML
50 lines
1.3 KiB
TOML
[package]
|
|
name = "revolt-gifbox"
|
|
version = "0.12.0"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
# Serialisation
|
|
serde = { version = "1.0", features = ["derive", "rc"] }
|
|
serde_json = "1.0.68"
|
|
|
|
# Async runtime
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
# Web requests
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
# Core crates
|
|
revolt-config = { version = "0.12.0", path = "../../core/config" }
|
|
revolt-models = { version = "0.12.0", path = "../../core/models" }
|
|
revolt-result = { version = "0.12.0", path = "../../core/result", features = [
|
|
"utoipa",
|
|
"axum",
|
|
] }
|
|
revolt-coalesced = { version = "0.12.0", path = "../../core/coalesced", features = [
|
|
"queue",
|
|
] }
|
|
revolt-database = { version = "0.12.0", path = "../../core/database", features = [
|
|
"axum-impl",
|
|
] }
|
|
revolt-ratelimits = { version = "0.12.0", path = "../../core/ratelimits", features = [
|
|
"axum",
|
|
] }
|
|
|
|
# Axum / web server
|
|
axum = { version = "0.7.5" }
|
|
axum-extra = { version = "0.9", features = ["typed-header"] }
|
|
tower-http = { version = "0.5.2", features = ["cors"] }
|
|
|
|
# OpenAPI & documentation generation
|
|
utoipa-scalar = { version = "0.1.0", features = ["axum"] }
|
|
utoipa = { version = "4.2.3", features = ["axum_extras", "ulid"] }
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
|
|
# Utils
|
|
lru_time_cache = "0.11.11"
|