Skip to content

Commit

Permalink
rust 1.76.0
Browse files Browse the repository at this point in the history
  • Loading branch information
amitu committed Feb 8, 2024
1 parent d87cf04 commit d259a18
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion fastn-core/src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1187,7 +1187,7 @@ impl Config {
&self,
package: &fastn_core::Package,
) -> fastn_core::Result<fastn_core::Package> {
match { self.all_packages.get(&package.name) } {
match self.all_packages.get(&package.name) {
Some(package) => Ok(package.clone()),
None => Err(fastn_core::Error::PackageError {
message: format!("Could not resolve package {}", &package.name),
Expand Down
2 changes: 1 addition & 1 deletion ftd/src/ftd2021/html.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ impl Node {

let all_children = {
let mut children: Vec<ftd::Node> = self.children.to_vec();
#[allow(clippy::blocks_in_if_conditions)]
#[allow(clippy::blocks_in_conditions)]
if let Some(ext_children) = external_children {
if *external_open_id
== self.attrs.get("data-id").map(|v| {
Expand Down
2 changes: 1 addition & 1 deletion ftd/src/ftd2021/ui.rs
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,7 @@ impl Element {
_ => return d,
};

#[allow(clippy::blocks_in_if_conditions)]
#[allow(clippy::blocks_in_conditions)]
if *external_open_id
== id.as_ref().map(|v| {
if v.contains(':') {
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.75.0
1.76.0

0 comments on commit d259a18

Please sign in to comment.