diff --git a/{{project-name}}-ebpf/Cargo.toml b/{{project-name}}-ebpf/Cargo.toml index 01cfaa2..ca707b3 100644 --- a/{{project-name}}-ebpf/Cargo.toml +++ b/{{project-name}}-ebpf/Cargo.toml @@ -4,7 +4,7 @@ version = "0.1.0" edition = "2021" [dependencies] -aya-ebpf = { git = "https://github.com/aya-rs/aya" } +aya-ebpf = "0.1.0" aya-log-ebpf = { git = "https://github.com/aya-rs/aya" } {{ project-name }}-common = { path = "../{{ project-name }}-common" } diff --git a/{{project-name}}/Cargo.toml b/{{project-name}}/Cargo.toml index a869e6e..a6a655d 100644 --- a/{{project-name}}/Cargo.toml +++ b/{{project-name}}/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" publish = false [dependencies] -aya = { git = "https://github.com/aya-rs/aya", features = ["async_tokio"] } -aya-log = { git = "https://github.com/aya-rs/aya" } +aya = "0.12" +aya-log = "0.2" {% if program_types_with_opts contains program_type -%} clap = { version = "4.1", features = ["derive"] } {% endif -%}