Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions harbor-client/src/db.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#![allow(clippy::too_many_arguments)]

use crate::db_models::mint_metadata::MintMetadata;
use crate::db_models::transaction_item::TransactionItem;
use crate::db_models::{
Expand Down
1 change: 0 additions & 1 deletion harbor-client/src/db_models/lightning_receive.rs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ impl LightningReceive {
PaymentStatus::from_i32(self.status)
}

#[allow(clippy::too_many_arguments)]
pub fn create(
conn: &mut SqliteConnection,
operation_id: String,
Expand Down
3 changes: 1 addition & 2 deletions harbor-ui/src/components/easing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,7 @@ impl Builder {

fn point(p: impl Into<Point>) -> lyon_algorithms::geom::Point<f32> {
let p: Point = p.into();
#[allow(clippy::manual_clamp)]
lyon_algorithms::geom::point(p.x.min(1.0).max(0.0), p.y.min(1.0).max(0.0))
lyon_algorithms::geom::point(p.x.clamp(0.0, 1.0), p.y.clamp(0.0, 1.0))
}
}

Expand Down
1 change: 0 additions & 1 deletion harbor-ui/src/components/indicator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ use iced::{Element, Event, Length, Point, Rectangle, Size, Vector};
/// true, // show
/// )
/// ```
#[allow(missing_debug_implementations)]
pub struct Indicator<'a, Message, Theme = iced::Theme, Renderer = iced::Renderer>
where
Theme: container::Catalog,
Expand Down
1 change: 0 additions & 1 deletion harbor-ui/src/components/spinner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ pub fn the_spinner() -> Element<'static, Message, Theme> {
spinner.into()
}

#[allow(missing_debug_implementations)]
pub struct Circular<'a, Theme>
where
Theme: StyleSheet,
Expand Down
Loading