mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-06 03:06:04 +00:00
* chore(main): release 0.13.6 * chore: update Cargo.lock Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> --------- Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: stoat-release[bot] <245062572+stoat-release[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
29 lines
664 B
TOML
29 lines
664 B
TOML
[package]
|
|
name = "revolt-coalesced"
|
|
version = "0.13.6"
|
|
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 = { workspace = true, features = ["sync"], optional = true }
|
|
indexmap = { workspace = true, optional = true }
|
|
lru = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = [
|
|
"rt",
|
|
"rt-multi-thread",
|
|
"macros",
|
|
"time",
|
|
] }
|