Compare commits

..

No commits in common. "ca9d44e7dba4bdc65a2099a78ef4c3aced51c76e" and "88e0990e00b249580cee607b2797478f9ba1b866" have entirely different histories.

3 changed files with 5 additions and 25 deletions

View File

@ -1,5 +0,0 @@
pipeline:
lint:
image: 'rustlang/rust:nightly'
commands:
- cargo fmt -- --check

View File

@ -1,15 +0,0 @@
# When block for each step is temporary until top-level when is properly implemented
pipeline:
clippy:
image: 'rust:1.57'
commands:
- cargo clippy -- -D clippy::all --no-deps
when:
event: pull_request
tests:
image: 'rust:1.57'
commands:
- cargo test
when:
event: pull_request

View File

@ -9,16 +9,16 @@ edition = "2018"
# Backend web framework
rocket = { version = "0.5.0-rc.1", features = [ "json", "uuid" ] }
# Used to (de)serialize JSON
serde = { version = "1.0.133", features = [ "derive" ] }
serde = { version = "1.0.132", features = [ "derive" ] }
rand = "0.8.4"
uuid = { version = "0.8.2", features = ["serde"] }
# Authentification
jwt = "0.15.0"
hmac = "0.11.0"
sha2 = { version = "0.9.0", default_features = false }
hmac = "*"
sha2 = "*"
# Timestamps for JWT tokens
chrono = { version = "0.4.19", features = [ "serde" ] }
chrono = { version = "*", features = [ "serde" ] }
# Encoding of refresh tokens
base64 = "0.13.0"
# Reading in configuration files
figment = { version = "0.10.6", features = [ "yaml" ] }
figment = { version = "*", features = [ "yaml" ] }