mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-13 21:17:05 +00:00
69 lines
2.2 KiB
TOML
69 lines
2.2 KiB
TOML
[package]
|
|
name = "revolt"
|
|
# To help optimise CI and Docker builds.
|
|
# Version here is left as 0.0.0, please
|
|
# adjust and run ./set_version.sh instead.
|
|
version = "0.0.0"
|
|
authors = ["Paul Makles <paulmakles@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# Utility
|
|
lru = "0.7.0"
|
|
url = "2.2.2"
|
|
log = "0.4.11"
|
|
dotenv = "0.15.0"
|
|
linkify = "0.6.0"
|
|
once_cell = "1.4.1"
|
|
env_logger = "0.7.1"
|
|
lazy_static = "1.4.0"
|
|
ctrlc = { version = "3.0", features = ["termination"] }
|
|
|
|
# Lang. Utilities
|
|
regex = "1"
|
|
num_enum = "0.5.1"
|
|
impl_ops = "0.1.1"
|
|
bitfield = "0.13.2"
|
|
phf = { version = "0.9.0", features = ["macros"] }
|
|
|
|
# ID / key generation
|
|
ulid = "0.4.1"
|
|
nanoid = "0.4.0"
|
|
base64 = "0.13.0"
|
|
|
|
# serde
|
|
serde_json = "1.0.57"
|
|
serde = { version = "1.0.115", features = ["derive"] }
|
|
validator = { version = "0.11", features = ["derive"] }
|
|
rmp-serde = { git = "https://github.com/insertish/msgpack-rust", rev = "5bf2c24203ad422233cf35b7b7bfad9f7e811814" }
|
|
|
|
# async
|
|
futures = "0.3.8"
|
|
chrono = "0.4.15"
|
|
async-channel = "1.6.1"
|
|
reqwest = { version = "0.11.4", features = ["json"] }
|
|
async-std = { version = "1.8.0", features = ["tokio1", "tokio02", "attributes"] }
|
|
|
|
# internal util
|
|
web-push = "0.7.2"
|
|
many-to-many = "0.1.2"
|
|
lettre = "0.10.0-alpha.4"
|
|
rauth = { git = "https://github.com/insertish/rauth", rev = "157263ffcbd6cb1073e288b215db227634c4c29a" }
|
|
hive_pubsub = { git = "https://gitlab.insrt.uk/insert/hive", rev = "b0f3db9d33990530d7640d4bbb309c8d9eb5c0cf", features = ["redis-backend"] }
|
|
|
|
# redis
|
|
redis = { version = "0.21.2", features = ["async-std-comp"] }
|
|
mobc = { version = "0.7.3" }
|
|
mobc-redis = { version = "0.7.0", default-features = false, features = ["async-std-comp"] }
|
|
|
|
# web
|
|
async-tungstenite = { version = "0.10.0", features = ["async-std-runtime"] }
|
|
rocket = { version = "0.5.0-rc.1", default-features = false, features = ["json"] }
|
|
mongodb = { version = "1.2.2", features = ["tokio-runtime"], default-features = false }
|
|
rocket_cors = { git = "https://github.com/lawliet89/rocket_cors", rev = "5843861a88958c16bfaa0b40f0d8910772bcd2f6" }
|
|
|
|
# quark
|
|
revolt-quark = { path = "/run/media/mink/2b4927e2-fad4-4b12-b6ea-cdf7e0ab0339/revolt/quark/" }
|