Skip to content
Merged
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
15 changes: 15 additions & 0 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# This is pinned nightly to work around a transitive-dependency break.
#
# `ethnum 1.5.2` (pulled in via polars-arrow when the `cast_polars` feature
# is enabled) constructs `TryFromIntError` via `mem::transmute(())`, which
# assumes the type is zero-sized. The rustc nightly from 2026-04-18 made
# `TryFromIntError` carry a discriminant, so that transmute now hits an
# E0512 size mismatch.
#
# This pin will be removed from Minarrow once either:
# - `ethnum` ships a release (>1.5.2) that constructs the error without
# `mem::transmute`, or
# - `polars-arrow` drops its dependency on the affected `ethnum` version.
[toolchain]
channel = "nightly-2026-04-17"
components = ["rustfmt", "clippy"]
Loading