From 6756d5fc0171d1385a293e8a9fee036aaa77800c Mon Sep 17 00:00:00 2001 From: Arindam Das Date: Tue, 13 Jun 2023 21:22:23 +0530 Subject: [PATCH] style: adds spaces around "=" in Cargo.toml --- {{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 cc9f55f..d06a00f 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 = { 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 -%}