You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jan 22, 2025. It is now read-only.
In Rust 1.40, procedural macros can expand to macro_rules! declaration without using #![feature(proc_macro_hygiene)]. By basing rust-bpf-builder on a newer version of Rust, we can avoid the need to conditionally apply the #![feature(proc_macro_hygiene)] feature gate in #10905
The text was updated successfully, but these errors were encountered:
Currently, rust-bpf-builder uses a custom version of Rust based on Rust 1.39: https://github.com/solana-labs/rust-bpf-builder/blob/2ae3f921f65789067963b7d7a41219d0a1997edb/linux/Dockerfile#L66-L69
In Rust 1.40, procedural macros can expand to
macro_rules!
declaration without using#![feature(proc_macro_hygiene)]
. By basing rust-bpf-builder on a newer version of Rust, we can avoid the need to conditionally apply the#![feature(proc_macro_hygiene)]
feature gate in #10905The text was updated successfully, but these errors were encountered: