From 92c7d4525e495612a2a3918bba5fb4f5d14f5b9d Mon Sep 17 00:00:00 2001 From: doinkythederp Date: Sun, 28 Jul 2024 20:15:05 -0700 Subject: [PATCH] fix: match specified project name --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index cf981a9..bb93cb5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,13 @@ [package] -name = "vexide-template" +name = "{{project_name}}" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html {% if crate_type == "bin" %} # These fields configure default behavior for uploads with `cargo v5`. -[package.metadata.v5] -{% if slot != "none" %}slot = {{ slot }}{% endif %} +[package.metadata.v5]{% if slot != "none" %} +slot = {{ slot }}{% endif %} icon = "{{ icon }}" compress = true {% endif %}