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

chore: toolchain upgrade #118

Merged
merged 1 commit into from
Feb 4, 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 @@ -160,7 +160,7 @@ impl Felt {
// multiplying by BASE, effectively decomposing in base 2^256 to build
// digits with a length of 32 bytes. This is analogous to splitting the
// number `xyz` as `x * 10^2 + y * 10^1 + z * 10^0`.
const BASE: Felt = Self(FieldElement::<Stark252PrimeField>::const_from_raw(
const BASE: Felt = Felt(FieldElement::<Stark252PrimeField>::const_from_raw(
UnsignedInteger::from_limbs([
576413109808302096,
18446744073700081664,
Expand Down Expand Up @@ -204,7 +204,7 @@ impl Felt {
// multiplying by BASE, effectively decomposing in base 2^256 to build
// digits with a length of 32 bytes. This is analogous to splitting the
// number `xyz` as `x * 10^2 + y * 10^1 + z * 10^0`.
const BASE: Felt = Self(FieldElement::<Stark252PrimeField>::const_from_raw(
const BASE: Felt = Felt(FieldElement::<Stark252PrimeField>::const_from_raw(
UnsignedInteger::from_limbs([
576413109808302096,
18446744073700081664,
Expand Down
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.77.2"
channel = "1.80.1"
components = ["rustfmt", "clippy", "rust-analyzer"]
profile = "minimal"