From 887ff00a30efd6f1c554f964c02d7c618d796290 Mon Sep 17 00:00:00 2001 From: marcelbuesing Date: Fri, 25 May 2018 23:09:16 +0200 Subject: [PATCH] Add missing Cargo manifest fields --- Cargo.toml | 3 +++ src/lib.rs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ecebb8b..9cdeba8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,10 @@ name = "bme680" version = "0.1.0" authors = ["marcelbuesing "] +description = "A pure Rust implementation for the BME680 environmental sensor." repository = "https://github.com/marcelbuesing/bme680-hal" +documentation = "https://docs.rs/bme680" +license = "MIT" [dependencies] bitflags = "1.0" diff --git a/src/lib.rs b/src/lib.rs index 97eeb8e..d1ed4c6 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,4 +1,4 @@ -//! This crate is a pure Rust implementation for the BME680 environmental sensor. +//! This crate is a pure Rust implementation for the BME680 environmental sensor. //! The library can be used to read the gas, pressure, humidity and temperature sensors via I²C. //! //! The library uses the embedded-hal crate to abstract reading and writing via I²C.