Skip to content

Commit

Permalink
Merge pull request #1 from LemonInTheDark/lib-bump
Browse files Browse the repository at this point in the history
Deals with a duped crate version, disables lint since it's effectively unfixable
  • Loading branch information
LemonInTheDark authored Apr 26, 2024
2 parents e7cfa5f + 62cbf21 commit a6e15f1
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 48 deletions.
83 changes: 38 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion hypnagogic_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ bitflags = "1.3"
dmi = "0.3.1"
enum_dispatch = "0.3"
enum-iterator = "1.2"
fixed-map = { version = "0.8", features = ["serde"] }
fixed-map = { version = "0.9.5", features = ["serde"] }
image = { version = "0.24", default-features = false, features = ["png", "gif"] }
once_cell = "1.17.1"
serde = { version = "1.0", features = ["derive"] }
Expand Down
6 changes: 4 additions & 2 deletions hypnagogic_core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,17 @@
#![allow(clippy::cast_lossless)]
#![allow(clippy::cast_precision_loss)]
#![allow(clippy::cast_possible_truncation)]
// Not actually going to be a published crate, useless to add
// not actually going to be a published crate, useless to add
#![allow(clippy::cargo_common_metadata)]
// Annoying
// annoying
#![allow(clippy::module_name_repetitions)]
// allow this for now, but it's probably a bad idea
#![allow(clippy::missing_errors_doc)]
#![allow(clippy::missing_panics_doc)]
// sign conversion is fine
#![allow(clippy::cast_sign_loss)]
// error we can't do anything about because of dependancies
#![allow(clippy::multiple_crate_versions)]

pub mod config;
pub mod generation;
Expand Down

0 comments on commit a6e15f1

Please sign in to comment.