From c9b498215f76b957cec560e60900d99b3e455bda Mon Sep 17 00:00:00 2001 From: Niklas Kapelle Date: Tue, 10 Feb 2026 12:53:00 +0100 Subject: [PATCH] added extra info to cargo.toml --- Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7b2816a..97e5795 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,12 +2,19 @@ name = "mmc56x3" version = "0.1.0" edition = "2024" +license = "Apache-2.0" +description = "Driver for the MMC56x3" +readme = "README.md" +repository = "https://git.kapelle.org/niklas/mmc56x3-rust" +homepage = "https://git.kapelle.org/niklas/mmc56x3-rust" +keywords = ["no_std", "embedded"] + [dependencies] embedded-hal-async = { version = "1.0.0" } maybe-async = { version = "0.2.10" } embedded-hal = { version = "1.0.0", optional = true } -bitflags = { version = "2.10.0", default-features = false } +bitflags = { version = "2.10.0" } [features]