1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-06-01 00:13:56 +00:00

Update dependencies and remove travis unused feature

This commit is contained in:
Daniel García 2019-06-02 00:28:20 +02:00
parent 5710703c50
commit 9add8e19eb
No known key found for this signature in database
GPG key ID: FC8A7D14C3CD543A
5 changed files with 161 additions and 145 deletions

View file

@ -180,7 +180,7 @@ macro_rules! make_config {
match $value {
Some(v) => v,
None => {
let f: &Fn(&ConfigItems) -> _ = &$default_fn;
let f: &dyn Fn(&ConfigItems) -> _ = &$default_fn;
f($config)
}
}
@ -551,7 +551,7 @@ impl HelperDef for CaseHelper {
r: &'reg Handlebars,
ctx: &Context,
rc: &mut RenderContext<'reg>,
out: &mut Output,
out: &mut dyn Output,
) -> HelperResult {
let param = h
.param(0)
@ -575,7 +575,7 @@ impl HelperDef for JsEscapeHelper {
_: &'reg Handlebars,
_: &Context,
_: &mut RenderContext<'reg>,
out: &mut Output,
out: &mut dyn Output,
) -> HelperResult {
let param = h
.param(0)