From 62ffa1093955b7430ad6970142aad52b91094d9e Mon Sep 17 00:00:00 2001 From: Paul <paulmakles@gmail.com> Date: Thu, 27 May 2021 15:51:24 +0100 Subject: [PATCH] rAuth: Silently fail email send for creation. --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- set_version.sh | 2 +- src/version.rs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b849d2e..2daf3e1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2332,8 +2332,8 @@ dependencies = [ [[package]] name = "rauth" -version = "0.2.6-alpha.0" -source = "git+https://gitlab.insrt.uk/insert/rauth?rev=d3f417a05cf7a26dd9d116c5abcdeacc975c53b9#d3f417a05cf7a26dd9d116c5abcdeacc975c53b9" +version = "0.2.7" +source = "git+https://gitlab.insrt.uk/insert/rauth?rev=1db825a0059639144ea8802f6d51b5d27c5b986e#1db825a0059639144ea8802f6d51b5d27c5b986e" dependencies = [ "chrono", "handlebars", diff --git a/Cargo.toml b/Cargo.toml index 872959a..738d3f4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ 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" } +rauth = { git = "https://gitlab.insrt.uk/insert/rauth", rev = "1db825a0059639144ea8802f6d51b5d27c5b986e" } 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 } diff --git a/set_version.sh b/set_version.sh index 89ab4fd..7f97518 100755 --- a/set_version.sh +++ b/set_version.sh @@ -1,3 +1,3 @@ #!/bin/bash -export version=0.4.2-alpha.2 +export version=0.4.2-alpha.3 echo "pub const VERSION: &str = \"${version}\";" > src/version.rs diff --git a/src/version.rs b/src/version.rs index b457d3a..d3ed56b 100644 --- a/src/version.rs +++ b/src/version.rs @@ -1 +1 @@ -pub const VERSION: &str = "0.4.2-alpha.2"; +pub const VERSION: &str = "0.4.2-alpha.3"; -- GitLab