From 9f5332183dc55bda3e9d60d37dbfcd62f889a39e Mon Sep 17 00:00:00 2001 From: Arindam Das Date: Tue, 13 Jun 2023 11:17:01 +0530 Subject: [PATCH] fix: fixes aya and aya-log version mismatch Fixes aya and aya-log version mismatch between {{project-name}}-epbf and {{project-name}} crates. --- {{project-name}}/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/{{project-name}}/Cargo.toml b/{{project-name}}/Cargo.toml index cdd7521..cc9f55f 100644 --- a/{{project-name}}/Cargo.toml +++ b/{{project-name}}/Cargo.toml @@ -5,8 +5,8 @@ edition = "2021" publish = false [dependencies] -aya = { version = ">=0.11", features=["async_tokio"] } -aya-log = "0.1" +aya = { git="https://github.com/aya-rs/aya", features=["async_tokio"] } +aya-log = { git="https://github.com/aya-rs/aya" } {% if program_types_with_opts contains program_type -%} clap = { version = "4.1", features = ["derive"] } {% endif -%}