From dfac273df31b676f2031339ea6e43580518a12e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Stu=CC=88rmer?= Date: Sun, 20 Oct 2024 07:31:10 +0200 Subject: [PATCH] update project regarding the ownership change --- Cargo.lock | 4 ++-- Cargo.toml | 10 +++++----- README.md | 8 ++++---- src/lib.rs | 8 +++----- 4 files changed, 14 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 799b25f..e060442 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. [[package]] -name = "zigbee-rs" -version = "0.1.0" +name = "zigbee" +version = "0.1.0-alpha.1" diff --git a/Cargo.toml b/Cargo.toml index 0d816cb..0e39939 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,19 +1,19 @@ [package] -name = "zigbee-rs" -version = "0.1.0" +name = "zigbee" +version = "0.1.0-alpha.1" authors = ["Stürmer, Benjamin "] edition = "2018" rust-version = "1.31" -description = "ZigBee protocol stack based on the [ZigBee specification 22 1.0](https://csa-iot.org/wp-content/uploads/2022/01/docs-05-3474-22-0csg-zigbee-specification-1.pdf)" -documentation = "https://docs.rs/zigbee-rs" -homepage = "https://github.com/thebino/zigbee-rs" +description = "ZigBee protocol stack in `no-std` based on the [ZigBee specification 22 1.0](https://csa-iot.org/wp-content/uploads/2022/01/docs-05-3474-22-0csg-zigbee-specification-1.pdf)" +documentation = "https://docs.rs/zigbee" repository = "https://github.com/thebino/zigbee-rs" readme = "README.md" keywords = ["zigbee", "208.15.4"] categories = ["network-programming", "no-std", "embedded"] license = "MIT OR Apache-2.0" +[features] [dependencies] diff --git a/README.md b/README.md index 9e8e3ad..bd72cdd 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -# zigbee-rs +# zigbee -[![License](https://img.shields.io/github/license/thebino/zigbee-rs?style=for-the-badge)](./LICENSE.md) -[![GitHub contributors](https://img.shields.io/github/contributors/thebino/zigbee-rs?color=success&style=for-the-badge)](https://github.com/thebino/zigbee-rs/graphs/contributors) ![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/thebino/zigbee-rs/ci.yaml?style=for-the-badge) +[![GitHub contributors](https://img.shields.io/github/contributors/thebino/zigbee-rs?color=success&style=for-the-badge)](https://github.com/thebino/zigbee-rs/graphs/contributors) +[![License](https://img.shields.io/github/license/thebino/zigbee-rs?style=for-the-badge)](./LICENSE.md) ![ZigBee](https://img.shields.io/badge/zigbee-22.1.0-blue?color=4285F4&logo=zigbee&style=for-the-badge) ![Rust](https://img.shields.io/badge/rust-2021-orange?color=E45928&logo=rust&style=for-the-badge) -The ZigBee protocol stack to integrate ZigBee communication into an application. +The i**ZigBee protocol stack** in `no_std` to integrate ZigBee communication into an application. Zigbee is a wireless communication technology designed for low-power devices in smart homes and industrial settings. It enables these devices to connect and communicate with each other, allowing for efficient control and automation of various systems. diff --git a/src/lib.rs b/src/lib.rs index e0eccfa..03c3ae2 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,8 +1,6 @@ -//! # zigbee +//! Implements the ZigBee protocol stack in `no-std` based on the [ZigBee specification] //! -//! ZigBee is a protocol stack based on the ZigBee specification 22 1.0 +//! [ZigBee specification]: https://csa-iot.org/wp-content/uploads/2022/01/docs-05-3474-22-0csg-zigbee-specification-1.pdf //! -mod lib { - -} +#![no_std]