Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update toolchains #119

Merged
merged 1 commit into from
Feb 12, 2025
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
4 changes: 2 additions & 2 deletions crates/starknet-types-core/src/felt/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ impl Felt {
}

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

struct FeltVisitor;

impl<'de> de::Visitor<'de> for FeltVisitor {
impl de::Visitor<'_> for FeltVisitor {
type Value = Felt;

fn expecting(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
Expand Down
2 changes: 1 addition & 1 deletion ensure_no_std/rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.77.2"
channel = "1.84.1"
components = ["rustfmt", "clippy"]
targets = ["wasm32-unknown-unknown"]
profile = "minimal"
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
channel = "1.80.1"
channel = "1.84.1"
components = ["rustfmt", "clippy", "rust-analyzer"]
profile = "minimal"