[package] name = "revolt-autumn" version = "0.12.0" edition = "2021" license = "AGPL-3.0-or-later" publish = false [dependencies] # ID generation ulid = "1.1.3" nanoid = "0.4.0" # Media processing webp = "0.3.0" sha2 = "0.10.8" jxl-oxide = "0.8.1" kamadak-exif = "0.5.4" # revolt_little_exif = "0.5.1" image = { version = "0.25.2" } # avif encode requires dav1d system library: features = ["avif-native"] thumbhash = "0.1.0" # File processing revolt_clamav-client = { version = "0.1.5" } simdutf8 = { version = "0.1.4", features = ["aarch64_neon"] } # Content type processing infer = "0.16.0" ffprobe = "0.4.0" imagesize = "0.13.0" # Utility lazy_static = "1.5.0" moka = { version = "0.12.8", features = ["future"] } # Serialisation strum_macros = "0.26.4" serde_json = "1.0.68" serde = { version = "1.0", features = ["derive"] } # Async runtime tokio = { version = "1.0", features = ["full"] } # Core crates revolt-files = { version = "0.12.0", path = "../../core/files" } revolt-config = { version = "0.12.0", path = "../../core/config" } revolt-database = { version = "0.12.0", path = "../../core/database", features = [ "axum-impl", ] } revolt-result = { version = "0.12.0", path = "../../core/result", features = [ "utoipa", "axum", ] } revolt-ratelimits = { version = "0.12.0", path = "../../core/ratelimits", features = ["axum"] } # Axum / web server tempfile = "3.12.0" axum-macros = { workspace = true } axum_typed_multipart = { workspace = true } axum = { workspace = true } tower-http = { workspace = true } # OpenAPI & documentation generation utoipa-scalar = { version = "0.1.0", features = ["axum"] } utoipa = { version = "4.2.3", features = ["axum_extras", "ulid"] } # OpenTelemetry tracing = { workspace = true } tracing-subscriber = { workspace = true } opentelemetry = { workspace = true } opentelemetry_sdk = { workspace = true } opentelemetry-otlp = { workspace = true } opentelemetry-appender-tracing = { workspace = true }