Skip to content

Commit 291d555

Browse files
authored
chore(xdp): pin aya to prevent clippy/MSRV breakage (#2897)
1 parent ceb587d commit 291d555

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

tools/xdp/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ members = ["s2n-quic-xdp", "tester", "xtask"]
33
resolver = "2"
44

55
[workspace.dependencies]
6+
aya-obj = "=0.2.1" # new version requires MSRV 1.87.0 https://crates.io/crates/aya-obj/versions
7+
aya-log = "=0.2.1" # v0.2.2+ requires MSRV 1.87.0, v0.2.1 is compatible with aya 0.13
8+
aya-log-common = "=0.1.15" # v0.1.16+ requires MSRV 1.87.0, v0.1.15 is compatible with aya-log 0.2.1
69
bolero = "0.13"
710
bolero-generator = { version = "0.13", default-features = false }

tools/xdp/s2n-quic-xdp/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ default = ["tokio"]
1515

1616
[dependencies]
1717
aya = { version = "0.13", default-features = false }
18+
aya-obj = { workspace = true }
1819
bitflags = "2"
1920
errno = "0.3"
2021
libc = "0.2"

tools/xdp/tester/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ publish = false
66

77
[dependencies]
88
aya = { version = "0.13", features = ["async_tokio"] }
9-
aya-log = "0.2.1"
9+
aya-log = { workspace = true }
10+
aya-log-common = { workspace = true }
1011
clap = { version = "4.1", features = ["derive"] }
1112
anyhow = "1.0.68"
1213
env_logger = "0.11"

0 commit comments

Comments
 (0)