Skip to content

Commit 7b29b9f

Browse files
authored
build: update toolchains (#119)
1 parent ae310ba commit 7b29b9f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

crates/starknet-types-core/src/felt/mod.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ impl Felt {
448448
}
449449

450450
#[cfg(feature = "arbitrary")]
451-
impl<'a> Arbitrary<'a> for Felt {
451+
impl Arbitrary<'_> for Felt {
452452
// Creates an arbitrary `Felt` from unstructured input for fuzzing.
453453
// It uses the default implementation to create the internal limbs and then
454454
// uses the usual constructors from `lambdaworks-math`.
@@ -905,7 +905,7 @@ mod serde_impl {
905905

906906
struct FeltVisitor;
907907

908-
impl<'de> de::Visitor<'de> for FeltVisitor {
908+
impl de::Visitor<'_> for FeltVisitor {
909909
type Value = Felt;
910910

911911
fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {

ensure_no_std/rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[toolchain]
2-
channel = "1.77.2"
2+
channel = "1.84.1"
33
components = ["rustfmt", "clippy"]
44
targets = ["wasm32-unknown-unknown"]
55
profile = "minimal"

rust-toolchain.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "1.80.1"
2+
channel = "1.84.1"
33
components = ["rustfmt", "clippy", "rust-analyzer"]
44
profile = "minimal"

0 commit comments

Comments
 (0)