Commits on Source (294)
- 194 additional commits have been omitted to prevent performance issues.
Showing
- .dockerignore 3 additions, 0 deletions.dockerignore
- .gitignore 4 additions, 0 deletions.gitignore
- .gitlab-ci.yml 20 additions, 0 deletions.gitlab-ci.yml
- .vscode/settings.json 5 additions, 0 deletions.vscode/settings.json
- Cargo.lock 2359 additions, 1451 deletionsCargo.lock
- Cargo.toml 39 additions, 19 deletionsCargo.toml
- Dockerfile 25 additions, 0 deletionsDockerfile
- LICENSE 661 additions, 0 deletionsLICENSE
- README.md 20 additions, 0 deletionsREADME.md
- Rocket.toml 0 additions, 3 deletionsRocket.toml
- assets/banner.png 0 additions, 0 deletionsassets/banner.png
- assets/templates/reset.html 63 additions, 0 deletionsassets/templates/reset.html
- assets/templates/reset_plain.html 14 additions, 0 deletionsassets/templates/reset_plain.html
- assets/templates/verify.html 63 additions, 0 deletionsassets/templates/verify.html
- assets/templates/verify_plain.html 15 additions, 0 deletionsassets/templates/verify_plain.html
- assets/user_blue.png 0 additions, 0 deletionsassets/user_blue.png
- assets/user_green.png 0 additions, 0 deletionsassets/user_green.png
- assets/user_red.png 0 additions, 0 deletionsassets/user_red.png
- assets/user_yellow.png 0 additions, 0 deletionsassets/user_yellow.png
- docker-compose.yml 18 additions, 0 deletionsdocker-compose.yml
.dockerignore
0 → 100644
.gitlab-ci.yml
0 → 100644
.vscode/settings.json
0 → 100644
This diff is collapsed.
[package] | [package] | ||
name = "revolt" | name = "revolt" | ||
version = "0.1.0" | # 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>"] | authors = ["Paul Makles <paulmakles@gmail.com>"] | ||
edition = "2018" | edition = "2018" | ||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
[dependencies] | [dependencies] | ||
mongodb = "0.9.0" | regex = "1" | ||
bson = "0.14.0" | md5 = "0.7.0" | ||
rocket = { version = "0.4.2", default-features = false } | log = "0.4.11" | ||
once_cell = "1.3.1" | ulid = "0.4.1" | ||
dotenv = "0.15.0" | |||
ulid = "0.3.1" | |||
serde = { version = "1.0", features = ["derive"] } | |||
rocket_contrib = "0.4.2" | |||
validator = "0.10.0" | |||
bcrypt = "0.6.1" | |||
chrono = "0.4.10" | |||
rand = "0.7.3" | rand = "0.7.3" | ||
time = "0.2.4" | time = "0.2.16" | ||
reqwest = { version = "0.10.1", features = ["blocking", "json"] } | nanoid = "0.4.0" | ||
num_enum = "0.4.2" | base64 = "0.13.0" | ||
ws = "0.9.1" | linkify = "0.6.0" | ||
hashbrown = "0.7.0" | dotenv = "0.15.0" | ||
serde_json = "1.0.47" | futures = "0.3.8" | ||
rocket_cors = "0.5.1" | 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 = "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 } |
Dockerfile
0 → 100644
LICENSE
0 → 100644
This diff is collapsed.
README.md
0 → 100644
Rocket.toml
deleted
100644 → 0
assets/banner.png
0 → 100644
3.85 KiB
assets/templates/reset.html
0 → 100644
assets/templates/reset_plain.html
0 → 100644
assets/templates/verify.html
0 → 100644
assets/templates/verify_plain.html
0 → 100644
assets/user_blue.png
0 → 100644
11.3 KiB
assets/user_green.png
0 → 100644
11.6 KiB
assets/user_red.png
0 → 100644
7.24 KiB
assets/user_yellow.png
0 → 100644
11.6 KiB
docker-compose.yml
0 → 100644