Skip to content

Commit 2150401

Browse files
committed
feat: change aya to crates.io version for stability
1 parent 72494cc commit 2150401

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/build-net-tc-filter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: rust-net-tc-filter
22
on: [push]
33
env:
4-
RUSTUP_TOOLCHAIN: "1.85.0"
4+
RUSTUP_TOOLCHAIN: "1.86.0"
55
RUSTUP_HOME: "./rust/rustup"
66
CARGO_HOME: "./rust/cargo"
77

net-tc-filter/net-tc-filter-app/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ edition = "2024"
77

88
[dependencies]
99
anyhow = "1.0.96"
10-
aya = { git = "https://github.com/aya-rs/aya", features = ["async_tokio"] }
11-
aya-log = { git = "https://github.com/aya-rs/aya" }
10+
aya = { version = "0.13.1", default-features = false }
11+
aya-log = { version = "0.2.1", default-features = false }
1212
bytes = {version = "1"}
1313
clap = { version = "4.5", features = ["derive"] }
1414
libc = {version="0.2"}

net-tc-filter/net-tc-filter-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ user = [ "aya" ]
1212

1313

1414
[dependencies]
15-
aya = { git = "https://github.com/aya-rs/aya", optional = true }
15+
aya = { version = "0.13.1", default-features = false , optional = true }
1616

1717
[lib]
1818
path = "src/lib.rs"

net-tc-filter/net-tc-filter-ebpf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ edition = "2024"
77

88

99
[dependencies]
10-
aya-ebpf = { git = "https://github.com/aya-rs/aya" }
11-
aya-log-ebpf = { git = "https://github.com/aya-rs/aya"}
10+
aya-ebpf = { version = "0.1.1", default-features = false }
11+
aya-log-ebpf = { version = "0.1.1", default-features = false }
1212
net-tc-filter-common = { path = "../net-tc-filter-common" }
1313
memoffset = "0.9"
1414

0 commit comments

Comments
 (0)