mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
* chore: start moving all deps to workspace deps
Signed-off-by: Zomatree <me@zomatree.live>
* chore: migrate all deps to workspace deps
Signed-off-by: Zomatree <me@zomatree.live>
* chore: add more dep groups
Signed-off-by: Zomatree <me@zomatree.live>
* fix: add migration to update existing files to be animated (#705)
* fix: add migration to update existing files to be animated
Signed-off-by: Zomatree <me@zomatree.live>
* Revert "fix: add migration to update existing files to be animated"
This reverts commit 4e1f1c116c.
Signed-off-by: Zomatree <me@zomatree.live>
* fix: calculate animated for existing files when fetched
Signed-off-by: Zomatree <me@zomatree.live>
---------
Signed-off-by: Zomatree <me@zomatree.live>
* fix: mise start + missing docker image (#564)
* fix: mise start + missing docker image
Signed-off-by: Damocles078 <hellodamocles078@gmail.com>
* fix: bump livekit version
Signed-off-by: Damocles <106018783+Damocles078@users.noreply.github.com>
---------
Signed-off-by: Damocles078 <hellodamocles078@gmail.com>
Signed-off-by: Tom <iamtomahawkx@gmail.com>
Signed-off-by: Damocles <106018783+Damocles078@users.noreply.github.com>
Co-authored-by: Tom <iamtomahawkx@gmail.com>
* docs: update donation link (#709)
Signed-off-by: Zomatree <me@zomatree.live>
* fix: remove usage of deprecated functions
Signed-off-by: Zomatree <me@zomatree.live>
---------
Signed-off-by: Zomatree <me@zomatree.live>
Signed-off-by: Damocles078 <hellodamocles078@gmail.com>
Signed-off-by: Tom <iamtomahawkx@gmail.com>
Signed-off-by: Damocles <106018783+Damocles078@users.noreply.github.com>
Co-authored-by: Damocles <106018783+Damocles078@users.noreply.github.com>
Co-authored-by: Tom <iamtomahawkx@gmail.com>
Co-authored-by: Paul Makles <me@insrt.uk>
93 lines
2.2 KiB
TOML
93 lines
2.2 KiB
TOML
[package]
|
|
name = "revolt-delta"
|
|
version = "0.12.1"
|
|
license = "AGPL-3.0-or-later"
|
|
authors = ["Paul Makles <paulmakles@gmail.com>"]
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# Test
|
|
rand = { workspace = true }
|
|
redis-kiss = { workspace = true }
|
|
|
|
# Utility
|
|
lru = { workspace = true }
|
|
url = { workspace = true }
|
|
log = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
linkify = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
|
|
# Lang. Utilities
|
|
regex = { workspace = true }
|
|
num_enum = { workspace = true }
|
|
impl_ops = { workspace = true }
|
|
bitfield = { workspace = true }
|
|
|
|
# ID / key generation
|
|
ulid = { workspace = true }
|
|
nanoid = { workspace = true }
|
|
|
|
# serde
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true }
|
|
validator = { workspace = true, features = ["derive"] }
|
|
iso8601-timestamp = { workspace = true }
|
|
|
|
# async
|
|
futures = { workspace = true }
|
|
chrono = { workspace = true }
|
|
async-channel = { workspace = true }
|
|
reqwest = { workspace = true, features = ["json"] }
|
|
async-std = { workspace = true, features = [
|
|
"tokio1",
|
|
"tokio02",
|
|
"attributes",
|
|
] }
|
|
|
|
# internal util
|
|
lettre = { workspace = true }
|
|
|
|
# web
|
|
|
|
rocket = { workspace = true, features = ["json"] }
|
|
rocket_cors = { workspace = true }
|
|
rocket_empty = { workspace = true, features = ["schema"] }
|
|
rocket_authifier = { workspace = true }
|
|
rocket_prometheus = { workspace = true }
|
|
|
|
# spec generation
|
|
schemars = { workspace = true }
|
|
revolt_rocket_okapi = { workspace = true, features = ["swagger"] }
|
|
|
|
# rabbit
|
|
amqprs = { workspace = true }
|
|
|
|
# core
|
|
authifier = { workspace = true }
|
|
revolt-config = { workspace = true }
|
|
revolt-database = { workspace = true, features = [
|
|
"rocket-impl",
|
|
"redis-is-patched",
|
|
"voice",
|
|
] }
|
|
revolt-models = { workspace = true, features = [
|
|
"schemas",
|
|
"validator",
|
|
"rocket",
|
|
] }
|
|
revolt-presence = { workspace = true }
|
|
revolt-result = { workspace = true, features = ["rocket", "okapi"] }
|
|
revolt-permissions = { workspace = true, features = ["schemas"] }
|
|
revolt-ratelimits = { workspace = true, features = ["rocket"] }
|
|
|
|
# voice
|
|
livekit-api = { workspace = true }
|
|
livekit-protocol = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
vergen = { workspace = true }
|