forked from jmug/stoatchat
* chore(main): release 0.13.2 * 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>
47 lines
1.2 KiB
TOML
47 lines
1.2 KiB
TOML
[package]
|
|
name = "revolt-bonfire"
|
|
version = "0.13.2"
|
|
license = "AGPL-3.0-or-later"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# util
|
|
log = { workspace = true }
|
|
sentry = { workspace = true }
|
|
lru = { workspace = true }
|
|
ulid = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
redis-kiss = { workspace = true }
|
|
lru_time_cache = { workspace = true }
|
|
async-channel = { workspace = true }
|
|
|
|
# parsing
|
|
querystring = { workspace = true }
|
|
regex = { workspace = true }
|
|
|
|
# serde
|
|
bincode = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
rmp-serde = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
# async
|
|
futures = { workspace = true }
|
|
async-tungstenite = { workspace = true, features = ["async-std-runtime"] }
|
|
async-std = { workspace = true }
|
|
|
|
# core
|
|
authifier = { workspace = true }
|
|
revolt-result = { workspace = true }
|
|
revolt-models = { workspace = true }
|
|
revolt-config = { workspace = true }
|
|
revolt-database = { workspace = true, features = ["voice"] }
|
|
revolt-permissions = { workspace = true }
|
|
revolt-presence = { workspace = true, features = ["redis-is-patched"] }
|
|
|
|
# redis
|
|
fred = { workspace = true, features = ["subscriber-client"] }
|