From 2c920dc7817ffa60ba46984ab8f24bfaff1b2c7a Mon Sep 17 00:00:00 2001 From: JuanLeon Lahoz Date: Mon, 9 May 2022 20:09:23 +0200 Subject: [PATCH] Change Cargo.toml so that github actions do not get confused Github actions fail to do `sed -n 's/^name = "\(.*\)"/\1/p' Cargo.toml` and get a name --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4a4214a..0e2ebe1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,12 +13,12 @@ categories = ["command-line-utilities", "text-processing"] license = "MIT" [lib] -name = "lowcharts" -path = "src/lib.rs" + name = "lowcharts" + path = "src/lib.rs" [[bin]] -name = "lowcharts" -path = "src/main.rs" + name = "lowcharts" + path = "src/main.rs" [dependencies]