From 1b4813502d3436906069c675966207b97c8bff68 Mon Sep 17 00:00:00 2001
From: Jonathan Pallant <jonathan.pallant@ferrous-systems.com>
Date: Wed, 27 Nov 2024 18:25:48 +0000
Subject: [PATCH] Fix defmt-semihosting metadata.

Without it, you can't publish.
---
 firmware/defmt-semihosting/Cargo.toml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/firmware/defmt-semihosting/Cargo.toml b/firmware/defmt-semihosting/Cargo.toml
index a0df2028..436c27b7 100644
--- a/firmware/defmt-semihosting/Cargo.toml
+++ b/firmware/defmt-semihosting/Cargo.toml
@@ -1,8 +1,13 @@
 [package]
 authors = ["The Knurling-rs developers"]
+categories = ["embedded", "no-std"]
+description = "Transmit defmt log messages over the Cortex-M Semihosting protocol"
 edition = "2021"
+keywords = ["knurling", "defmt", "defmt-transport"]
 license = "MIT OR Apache-2.0"
 name = "defmt-semihosting"
+readme = "README.md"
+repository = "https://github.com/knurling-rs/defmt"
 version = "0.1.0"
 
 [dependencies]