Commits on Source (122)
- 22 additional commits have been omitted to prevent performance issues.
Showing
- .gitignore 1 addition, 0 deletions.gitignore
- .vscode/settings.json 5 additions, 0 deletions.vscode/settings.json
- Cargo.lock 28 additions, 35 deletionsCargo.lock
- Cargo.toml 29 additions, 30 deletionsCargo.toml
- Dockerfile 4 additions, 0 deletionsDockerfile
- LICENSE 661 additions, 0 deletionsLICENSE
- assets/templates/reset.html 45 additions, 44 deletionsassets/templates/reset.html
- assets/templates/reset_plain.html 14 additions, 0 deletionsassets/templates/reset_plain.html
- assets/templates/verify.html 45 additions, 44 deletionsassets/templates/verify.html
- assets/templates/verify_plain.html 15 additions, 0 deletionsassets/templates/verify_plain.html
- publish.sh 7 additions, 0 deletionspublish.sh
- set_version.sh 3 additions, 0 deletionsset_version.sh
- src/bin/dummy.rs 1 addition, 0 deletionssrc/bin/dummy.rs
- src/database/entities/channel.rs 237 additions, 33 deletionssrc/database/entities/channel.rs
- src/database/entities/guild.rs 0 additions, 43 deletionssrc/database/entities/guild.rs
- src/database/entities/invites.rs 96 additions, 0 deletionssrc/database/entities/invites.rs
- src/database/entities/message.rs 316 additions, 130 deletionssrc/database/entities/message.rs
- src/database/entities/microservice/autumn.rs 115 additions, 0 deletionssrc/database/entities/microservice/autumn.rs
- src/database/entities/microservice/january.rs 154 additions, 0 deletionssrc/database/entities/microservice/january.rs
- src/database/entities/microservice/mod.rs 2 additions, 0 deletionssrc/database/entities/microservice/mod.rs
.vscode/settings.json
0 → 100644
[package] | ||
name = "revolt" | ||
version = "0.3.3-alpha.7" | ||
# 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" | ||
nanoid = "0.4.0" | ||
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"] } | ||
rauth = { git = "https://gitlab.insrt.uk/insert/rauth", rev = "c52758a5087cd035b0ed9c6eacc942ba5468d2ce" } | ||
hive_pubsub = { version = "0.4.3", features = ["mongo"] } | ||
rocket_cors = { git = "https://github.com/insertish/rocket_cors", branch = "master" } | ||
rocket_prometheus = { git = "https://github.com/insertish/rocket_prometheus", rev = "3d825aedb42793246c306a81fe67c5b187948983" } | ||
mongodb = { version = "1.1.1", features = ["tokio-runtime"], default-features = false } | ||
rauth = { git = "https://gitlab.insrt.uk/insert/rauth", rev = "00d3c3dff51cf3242a7d4adda4c5184c97fa2a03" } | ||
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 } | ||
mongodb = { version = "1.1.1", features = ["tokio-runtime"], default-features = false } | ||
once_cell = "1.4.1" | ||
dotenv = "0.15.0" | ||
ulid = "0.4.1" | ||
serde = { version = "1.0.115", features = ["derive"] } | ||
validator = { version = "0.11", features = ["derive"] } | ||
snafu = { version = "0.6.9" } | ||
serde_json = "1.0.57" | ||
bitfield = "0.13.2" | ||
reqwest = { version = "0.10.8", features = ["json"] } | ||
urlencoding = "1.1.1" | ||
lazy_static = "1.4.0" | ||
num_enum = "0.5.1" | ||
chrono = "0.4.15" | ||
time = "0.2.16" | ||
rand = "0.7.3" | ||
md5 = "0.7.0" | ||
regex = "1" | ||
lettre = "0.10.0-alpha.1" | ||
env_logger = "0.7.1" | ||
log = "0.4.11" |
LICENSE
0 → 100644
assets/templates/reset_plain.html
0 → 100644
assets/templates/verify_plain.html
0 → 100644
publish.sh
0 → 100755
set_version.sh
0 → 100755
src/bin/dummy.rs
0 → 100644
src/database/entities/guild.rs
deleted
100644 → 0
src/database/entities/invites.rs
0 → 100644
src/database/entities/microservice/autumn.rs
0 → 100644
src/database/entities/microservice/mod.rs
0 → 100644