forked from jmug/stoatchat
33 lines
818 B
TOML
33 lines
818 B
TOML
[package]
|
|
name = "revolt-autumn"
|
|
version = "0.7.14"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
# Serialisation
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0.68"
|
|
|
|
# Async runtime
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
# Logging
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
|
|
# Core crates
|
|
revolt-config = { version = "0.7.16", path = "../../core/config" }
|
|
revolt-result = { version = "0.7.16", path = "../../core/result", features = [
|
|
"utoipa",
|
|
"axum",
|
|
] }
|
|
|
|
# Axum / web server
|
|
tempfile = "3.12.0"
|
|
axum_typed_multipart = "0.12.1"
|
|
axum = { version = "0.7.5", features = ["multipart"] }
|
|
|
|
# OpenAPI & documentation generation
|
|
utoipa-scalar = { version = "0.1.0", features = ["axum"] }
|
|
utoipa = { version = "4.2.3", features = ["axum_extras", "ulid"] }
|