From 214a0506cdf969a9d7b8c19270b38fb2dd63f1f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20M=C3=BCller?= Date: Thu, 13 Nov 2025 09:51:05 -0800 Subject: [PATCH] Update task_longrun example to use blazesym 0.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update the task_longrun example to use blazesym version 0.2, in order to get the latest and greatest. Signed-off-by: Daniel Müller --- .github/workflows/test.yml | 2 +- examples/task_longrun/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7d678715..68035b18 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -146,7 +146,7 @@ jobs: components: rustfmt - uses: Swatinem/rust-cache@v2 - name: Build - run: cargo build --verbose --workspace --exclude runqslower + run: cargo build --verbose --workspace --exclude runqslower --exclude task_longrun build-capable: name: Build capable example with static libelf and libz diff --git a/examples/task_longrun/Cargo.toml b/examples/task_longrun/Cargo.toml index 777b107b..c48f4ac8 100644 --- a/examples/task_longrun/Cargo.toml +++ b/examples/task_longrun/Cargo.toml @@ -11,10 +11,10 @@ vmlinux = { git = "https://github.com/libbpf/vmlinux.h.git", rev = "83a228cf37fc [dependencies] anyhow = "1.0" +blazesym = "0.2" +clap = { version = "4.0.32", default-features = false, features = ["std", "derive", "help", "usage"] } libbpf-rs = { path = "../../libbpf-rs" } plain = "0.2" -clap = { version = "4.0.32", default-features = false, features = ["std", "derive", "help", "usage"] } -blazesym = "0.2.0-rc.3" [lints] workspace = true