From feb4ce691735f0780e58d85a4283ba52fceaec41 Mon Sep 17 00:00:00 2001
From: Stephen D <webmaster@scd31.com>
Date: Wed, 13 Sep 2023 22:20:13 -0300
Subject: [PATCH] ready for publishing

---
 .gitlab-ci.yml | 14 ++++++++++++++
 Cargo.toml     |  6 ++++++
 2 files changed, 20 insertions(+)
 create mode 100644 .gitlab-ci.yml

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
new file mode 100644
index 0000000..6228f6f
--- /dev/null
+++ b/.gitlab-ci.yml
@@ -0,0 +1,14 @@
+image: "rust:latest"
+
+stages:
+  - lint
+
+before_script:
+  - rustup component add rustfmt
+  - rustup component add clippy
+
+lint:
+  stage: lint
+  script:
+    - cargo fmt -- --check
+    - cargo clippy --all-features -- -D warnings
diff --git a/Cargo.toml b/Cargo.toml
index 33725c4..a5283ef 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,6 +2,12 @@
 name = "rf4463"
 version = "0.1.0"
 edition = "2021"
+authors = ["Stephen D <webmaster@scd31.com>"]
+description = "A simple, no-std library for interfacing with the SI4463 transceiver IC"
+repository = "https://gitlab.scd31.com/stephen/rf4463-lib/"
+license = "MIT"
+keywords = ["transceiver", "radio", "communication"]
+categories = ["no-std::no-alloc", "no-std", "embedded", "hardware-support"]
 
 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
 
-- 
GitLab