mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 05:26:59 +00:00
48 lines
1.8 KiB
TOML
48 lines
1.8 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]
|
|
regex = "1"
|
|
md5 = "0.7.0"
|
|
log = "0.4.11"
|
|
ulid = "0.4.1"
|
|
rand = "0.7.3"
|
|
time = "0.2.16"
|
|
base64 = "0.13.0"
|
|
linkify = "0.6.0"
|
|
dotenv = "0.15.0"
|
|
futures = "0.3.8"
|
|
chrono = "0.4.15"
|
|
num_enum = "0.5.1"
|
|
impl_ops = "0.1.1"
|
|
web-push = "0.7.2"
|
|
once_cell = "1.4.1"
|
|
bitfield = "0.13.2"
|
|
env_logger = "0.7.1"
|
|
serde_json = "1.0.57"
|
|
lazy_static = "1.4.0"
|
|
urlencoding = "1.1.1"
|
|
many-to-many = "0.1.2"
|
|
lettre = "0.10.0-alpha.1"
|
|
reqwest = { version = "0.10.8", features = ["json"] }
|
|
serde = { version = "1.0.115", features = ["derive"] }
|
|
validator = { version = "0.11", features = ["derive"] }
|
|
ctrlc = { version = "3.0", features = ["termination"] }
|
|
hive_pubsub = { version = "0.4.4", features = ["mongo"] }
|
|
async-std = { version = "1.8.0", features = ["tokio02", "attributes"] }
|
|
async-tungstenite = { version = "0.10.0", features = ["async-std-runtime"] }
|
|
rocket_cors = { git = "https://github.com/insertish/rocket_cors", branch = "master" }
|
|
mongodb = { version = "1.1.1", features = ["tokio-runtime"], default-features = false }
|
|
rauth = { git = "https://gitlab.insrt.uk/insert/rauth", rev = "d3f417a05cf7a26dd9d116c5abcdeacc975c53b9" }
|
|
rocket_contrib = { git = "https://github.com/SergioBenitez/Rocket", rev = "031948c1daaa146128d8a435be116476f2adde00" }
|
|
rocket_prometheus = { git = "https://github.com/insertish/rocket_prometheus", rev = "3d825aedb42793246c306a81fe67c5b187948983" }
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", rev = "031948c1daaa146128d8a435be116476f2adde00", default-features = false }
|