diff --git a/Cargo.toml b/Cargo.toml
index e5fed6dbe3eb73986e7e7b078e5635e9737b007f..64a48af8e079c2491a869c5125e86ccae30ee15e 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"] }