Skip to content

Commit

Permalink
Merge branch 'master' into peg/version-measurement
Browse files Browse the repository at this point in the history
* master:
  Bump uuid from 1.13.2 to 1.14.0 (#1312)
  Useless conversion clippy error (#1315)
  • Loading branch information
ameba23 committed Feb 22, 2025
2 parents b5c42b9 + 2f45d11 commit 0183d6f
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 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 crates/threshold-signature-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ tracing-subscriber ={ version="0.3.19", features=["env-filter", "json"] }
tracing-loki ="0.2"
tower-http ={ version="0.6.2", features=["trace", "cors"] }
tracing-bunyan-formatter="0.3.10"
uuid ={ version="1.13.2", features=["v4"] }
uuid ={ version="1.14.0", features=["v4"] }

# Misc
tokio-tungstenite="0.26.1"
Expand Down
1 change: 1 addition & 0 deletions pallets/programs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
//! `remove_program` - Allows a deployer to remove a program if not in use.
#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::useless_conversion)]
pub use pallet::*;

#[cfg(test)]
Expand Down
1 change: 1 addition & 0 deletions pallets/registry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#![allow(clippy::new_without_default)]
#![allow(clippy::or_fun_call)]
#![allow(clippy::derive_partial_eq_without_eq)] // Substrate confuses clippy
#![allow(clippy::useless_conversion)]
pub use pallet::*;

#[cfg(test)]
Expand Down
2 changes: 1 addition & 1 deletion pallets/staking/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#![cfg_attr(not(feature = "std"), no_std)]
#![allow(clippy::needless_range_loop)]
#![allow(clippy::or_fun_call)]
#![allow(clippy::useless_conversion)]
//! # Staking Pallet
//!
//!
Expand Down

0 comments on commit 0183d6f

Please sign in to comment.