Skip to content

Commit

Permalink
Add missing license headers + clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Absolucy committed Oct 13, 2024
1 parent 7e9a87a commit ffa8fe0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions crates/http/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// SPDX-License-Identifier: MPL-2.0
#![warn(
clippy::correctness,
clippy::suspicious,
clippy::complexity,
clippy::perf,
clippy::style
)]
8 changes: 8 additions & 0 deletions crates/pathfind/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// SPDX-License-Identifier: MPL-2.0
#![warn(
clippy::correctness,
clippy::suspicious,
clippy::complexity,
clippy::perf,
clippy::style
)]
use ahash::AHashMap;
use bitflags::bitflags;
use ordered_float::OrderedFloat;
Expand Down

0 comments on commit ffa8fe0

Please sign in to comment.