mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 21:47:02 +00:00
Co-authored-by: stoat-release[bot] <245062572+stoat-release[bot]@users.noreply.github.com>
29 lines
672 B
TOML
29 lines
672 B
TOML
[package]
|
|
name = "revolt-coalesced"
|
|
version = "0.12.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
authors = ["Paul Makles <me@insrt.uk>", "Zomatree <me@zomatree.live>"]
|
|
description = "Revolt Backend: Coalescion service"
|
|
repository = "https://github.com/stoatchat/stoatchat"
|
|
|
|
[features]
|
|
tokio = ["dep:tokio"]
|
|
queue = ["dep:indexmap"]
|
|
cache = ["dep:lru"]
|
|
|
|
default = ["tokio"]
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.47.0", features = ["sync"], optional = true }
|
|
indexmap = { version = "2.13.0", optional = true }
|
|
lru = { version = "0.16.3", optional = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.47.0", features = [
|
|
"rt",
|
|
"rt-multi-thread",
|
|
"macros",
|
|
"time",
|
|
] }
|