From 6cf8f93ed85902ef7c0830d58645da7f3ff1d883 Mon Sep 17 00:00:00 2001
From: Louis Capitanchik <contact@louiscap.co>
Date: Thu, 13 Oct 2022 18:02:54 +0100
Subject: [PATCH] Update Cargo.toml description

---
 Cargo.toml | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/Cargo.toml b/Cargo.toml
index e5fed6d..64a48af 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,9 +2,18 @@
 name = "png_to_svg"
 version = "0.1.0"
 edition = "2021"
+authors = [
+	"Louis Capitanchik <louis@microhacks.co.uk>"
+]
+description = "Convert RGBA8 PNG images into SVGs, where each pixel of input creates one output rect"
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
+[profile.release]
+opt-level = "s"
+debug = false
+strip = true
+
 [dependencies]
 anyhow = "1.0.65"
 clap = { version = "4.0.14", features = ["derive"] }
-- 
GitLab