From b45787c353e24c9d94a0c657f6b7b91f5d5f6b04 Mon Sep 17 00:00:00 2001 From: Arindam Das Date: Tue, 13 Jun 2023 21:42:53 +0530 Subject: [PATCH] fix: fixes aya and aya-log version mismatch (#89) Fixes aya and aya-log version mismatch between {{project-name}}-epbf and {{project-name}} crates. Fixes https://github.com/aya-rs/aya/issues/565. --- {{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..d06a00f 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 -%}