From e231ba940744b892539876fcf25055d01ef68b23 Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Sat, 29 Mar 2025 11:12:14 +1100 Subject: [PATCH] fix(relay): update `aya-build` dependency to latest version (#8540) As part of working on https://github.com/aya-rs/aya/pull/1228, which I am depending on in here I had to force-push which will break CI. Opening this to fix it. --- rust/Cargo.lock | 2 +- rust/relay/server/build.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 730cc2f75..80cbcf8d7 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -496,7 +496,7 @@ dependencies = [ [[package]] name = "aya-build" version = "0.1.2" -source = "git+https://github.com/thomaseizinger/aya?branch=fix%2Faya-build-pin-nightly#c766051000cc41e3409477a8fec8547acc4d72fd" +source = "git+https://github.com/thomaseizinger/aya?branch=fix%2Faya-build-pin-nightly#55ad60e4660a270a50a513f0ff6deb0d6c8d9a62" dependencies = [ "anyhow", "cargo_metadata", diff --git a/rust/relay/server/build.rs b/rust/relay/server/build.rs index 83f9c32cd..d51a2dc6e 100644 --- a/rust/relay/server/build.rs +++ b/rust/relay/server/build.rs @@ -14,7 +14,7 @@ fn main() -> anyhow::Result<()> { aya_build::build_ebpf( [package], - aya_build::Toolchain::Custom("+nightly-2024-12-13"), + aya_build::Toolchain::Custom("nightly-2024-12-13"), )?; Ok(())