mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 21:47:02 +00:00
* parse message push notification content and replace internal formatting Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * fix: don't unwrap the error I was using for db debugging Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * fix: emojis & remove compiler warning Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * fix: emojis in pushd Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> * feat: report errors in the render function to sentry Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com> --------- Signed-off-by: IAmTomahawkx <iamtomahawkx@gmail.com>
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "revolt-pushd"
|
|
version = "0.11.5"
|
|
edition = "2021"
|
|
license = "AGPL-3.0-or-later"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
revolt-result = { version = "0.11.5", path = "../../core/result" }
|
|
revolt-config = { version = "0.11.5", path = "../../core/config", features = [
|
|
"report-macros",
|
|
"anyhow",
|
|
] }
|
|
revolt-database = { version = "0.11.5", path = "../../core/database" }
|
|
revolt-models = { version = "0.11.5", path = "../../core/models", features = [
|
|
"validator",
|
|
] }
|
|
revolt-presence = { version = "0.11.5", path = "../../core/presence", features = [
|
|
"redis-is-patched",
|
|
] }
|
|
revolt-parser = { version = "0.11.5", path = "../../core/parser" }
|
|
|
|
anyhow = { version = "1.0.98" }
|
|
|
|
amqprs = { version = "1.7.0" }
|
|
fcm_v1 = "0.3.0"
|
|
web-push = "0.10.0"
|
|
isahc = { optional = true, version = "1.7", features = ["json"] }
|
|
revolt_a2 = { version = "0.10", default-features = false, features = ["ring"] }
|
|
redis-kiss = "0.1.4"
|
|
tokio = "1.39.2"
|
|
async-trait = "0.1.81"
|
|
ulid = "1.0.0"
|
|
|
|
authifier = "1.0.16"
|
|
|
|
log = "0.4.11"
|
|
pretty_env_logger = "0.4.0"
|
|
|
|
regex = "1.12.3"
|
|
|
|
#serialization
|
|
serde_json = "1"
|
|
revolt_optional_struct = "0.2.0"
|
|
serde = { version = "1", features = ["derive"] }
|
|
iso8601-timestamp = { version = "0.2.10", features = ["serde", "bson"] }
|
|
base64 = "0.22.1"
|