Files
stoatchat/crates/core/config/Cargo.toml
2026-06-24 13:38:20 +01:00

41 lines
930 B
TOML

[package]
name = "revolt-config"
version = "0.13.7"
edition = "2021"
license = "MIT"
authors = ["Paul Makles <me@insrt.uk>"]
description = "Revolt Backend: Configuration"
repository = "https://github.com/stoatchat/stoatchat"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
anyhow = ["dep:sentry-anyhow"]
report-macros = ["revolt-result"]
sentry = ["dep:sentry"]
test = ["tokio"]
default = ["sentry"]
[dependencies]
# Utility
config = { workspace = true }
cached = { workspace = true }
# Serde
serde = { workspace = true }
# Async
futures-locks = { workspace = true }
tokio = { workspace = true, optional = true }
# Logging
log = { workspace = true }
pretty_env_logger = { workspace = true }
# Sentry
sentry = { workspace = true, optional = true }
sentry-anyhow = { workspace = true, optional = true }
# Core
revolt-result = { workspace = true, optional = true }