From 9f0e83726ff3a03724e82a3e68e4ecb6398c8f28 Mon Sep 17 00:00:00 2001 From: Andrew Werner Date: Tue, 1 Aug 2023 10:22:17 -0400 Subject: [PATCH] bpf: move rustversion build dep to workspace All the other dependencies are at the workspace level other than this one. --- Cargo.toml | 1 + bpf/aya-bpf/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0db43a36..9af27c7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -80,6 +80,7 @@ quote = { version = "1", default-features = false } rbpf = { version = "0.2.0", default-features = false } rustdoc-json = { version = "0.8.6", default-features = false } rustup-toolchain = { version = "0.1.5", default-features = false } +rustversion = { version = "1.0.0", default-features = false } syn = { version = "2", default-features = false } tempfile = { version = "3", default-features = false } testing_logger = { version = "0.1.1", default-features = false } diff --git a/bpf/aya-bpf/Cargo.toml b/bpf/aya-bpf/Cargo.toml index 3e6b390d..0af23767 100644 --- a/bpf/aya-bpf/Cargo.toml +++ b/bpf/aya-bpf/Cargo.toml @@ -10,4 +10,4 @@ aya-bpf-macros = { path = "../../aya-bpf-macros" } aya-bpf-bindings = { path = "../aya-bpf-bindings" } [build-dependencies] -rustversion = "1.0" +rustversion = { workspace = true }