From 064da19ac8730fd745e439e370f4fb1052318090 Mon Sep 17 00:00:00 2001 From: Clemens Zangl Date: Mon, 11 Sep 2023 11:34:05 +0900 Subject: [PATCH] Provide more info and license details in Cargo.toml file --- Cargo.toml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 2f9443a..c839640 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,11 @@ version = "0.0.1" authors = ["Clemens Zangl "] description = """ -Bitwriter is a library to write data on bitlevel into byte vector. +`rust-bitwriter` is a library to write data on bit level into byte vector. +It is intended to complement https://github.com/irauta/bitreader with a writer +part. It supports standard signed/unsigned integer types, such as `u32`, `i64`. + +"Unusual" types, such as `i5` or `u22`, are also supported. """ documentation = "https://docs.rs/rust-bitwriter" @@ -13,7 +17,7 @@ repository = "https://github.com/Danaozhong/rust-bitwriter" keywords = ["bitwriter", "binary", "bit", "write"] -license = "" +license = "MIT license " [dependencies] cfg-if = "1"