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:
parent
5710703c50
commit
9add8e19eb
5 changed files with 161 additions and 145 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue