Merge branch 'main' into dev

dev
Jef Roosens 2022-01-03 12:39:49 +01:00
commit 508741be81
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
1 changed files with 5 additions and 5 deletions

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.132", features = [ "derive" ] }
serde = { version = "1.0.133", features = [ "derive" ] }
rand = "0.8.4"
uuid = { version = "0.8.2", features = ["serde"] }
# Authentification
jwt = "0.15.0"
hmac = "*"
sha2 = "*"
hmac = "0.11.0"
sha2 = { version = "0.9.0", default_features = false }
# Timestamps for JWT tokens
chrono = { version = "*", features = [ "serde" ] }
chrono = { version = "0.4.19", features = [ "serde" ] }
# Encoding of refresh tokens
base64 = "0.13.0"
# Reading in configuration files
figment = { version = "*", features = [ "yaml" ] }
figment = { version = "0.10.6", features = [ "yaml" ] }